Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
684 WAGV
Holders
335
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 WAGVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WAGV
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-12 */ // .'( )\.---. /`-. /`-. )\.---. /`-. .') .') // ,') \ ) ( ,-._( ,' _ \ ,' _ \ ( ,-._( ,' _ \ ( / ( / // ( /(/ / \ '-, ( '-' ( ( '-' ( \ '-, ( '-' ( )) )) // ) ( ) ,-` ) _ ) ) ,_ .' ) ,-` ) _ ) )'._.-. )'._.-. // ( .'\ \ ( ``-. ( ,' ) \ ( ' ) \ ( ``-. ( ,' ) \ ( ) ( ) // )/ )/ )..-.( )/ )/ )/ )/ )..-.( )/ )/ )/,__.' )/,__.' // )\.-. .-./( .'( )\ )\ )\.-. .-,.-.,-. .-./( .'( )\ .-./( .'( )\.-. // ,' ,-,_) ,' ) \ ) ( \, / ,' ,-,_) ) ,, ,. ( ,' ) \ ) , / ,' ) \ ) ,' ) // ( . __ ( .-, ( ) ( ) \ ( ( . __ \( |( )/ ( .-, ( ) ( ( ( ( .-, ( ) ( ( .-, ( // ) '._\ _) ) '._\ ) \ ) ( ( \ \ ) '._\ _) ) \ ) '._\ ) \ ) \ \ ) '._\ ) \ ) ) '._\ ) // ( , ( ( , ( ) \ `.)/ ) ( , ( \ ( ( , ( ) \ / ) ( , ( ) \ ( , ( // )/'._.' )/ ._.' )/ '.( )/'._.' )/ )/ ._.' )/__.( )/ ._.' )/ )/ ._.' // // SPDX-License-Identifier: MIT // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/WAGV.sol // .'( )\.---. /`-. /`-. )\.---. /`-. .') .') // ,') \ ) ( ,-._( ,' _ \ ,' _ \ ( ,-._( ,' _ \ ( / ( / // ( /(/ / \ '-, ( '-' ( ( '-' ( \ '-, ( '-' ( )) )) // ) ( ) ,-` ) _ ) ) ,_ .' ) ,-` ) _ ) )'._.-. )'._.-. // ( .'\ \ ( ``-. ( ,' ) \ ( ' ) \ ( ``-. ( ,' ) \ ( ) ( ) // )/ )/ )..-.( )/ )/ )/ )/ )..-.( )/ )/ )/,__.' )/,__.' // )\.-. .-./( .'( )\ )\ )\.-. .-,.-.,-. .-./( .'( )\ .-./( .'( )\.-. // ,' ,-,_) ,' ) \ ) ( \, / ,' ,-,_) ) ,, ,. ( ,' ) \ ) , / ,' ) \ ) ,' ) // ( . __ ( .-, ( ) ( ) \ ( ( . __ \( |( )/ ( .-, ( ) ( ( ( ( .-, ( ) ( ( .-, ( // ) '._\ _) ) '._\ ) \ ) ( ( \ \ ) '._\ _) ) \ ) '._\ ) \ ) \ \ ) '._\ ) \ ) ) '._\ ) // ( , ( ( , ( ) \ `.)/ ) ( , ( \ ( ( , ( ) \ / ) ( , ( ) \ ( , ( // )/'._.' )/ ._.' )/ '.( )/'._.' )/ )/ ._.' )/__.( )/ ._.' )/ )/ ._.' // pragma solidity 0.8.7; contract WAGV is ERC721A, Ownable { // "Private" Variables address private teamAddress = 0xadA438cd70aa1a8A3f386f51E1B8851cAf62eB17; string private baseURI; string private notRevealedUri = "ipfs://QmaaoYY9izE2FpPv4otHHMgoZeD2A1du9aJS56ERLjGzQh/"; string private baseExtension = ".json"; // Public Variables bool public started = true; bool public claimed = false; bool public revealed = false; uint256 public constant MAX_SUPPLY = 6666; uint256 public constant FREE_SUPPLY = 666; uint256 public maxMint = 2; uint256 public constant TEAM_CLAIM_AMOUNT = 55; uint256 public mintPrice = 0.0066 ether; constructor() ERC721A("We Are All Going To Void", "WAGV") {} // Start tokenid at 1 instead of 0 function _startTokenId() internal view virtual override returns (uint256) { return 1; } function mint(uint256 tokenQuantity) external payable { require(started, "The pilgrimage to this land has not yet started"); require(balanceOf(_msgSender()) + tokenQuantity <= maxMint, "You have already received your Token of Worship"); if (totalSupply() >= FREE_SUPPLY) { require(tokenQuantity * mintPrice <= msg.value, "Not enough ether sent"); } else if (totalSupply() + tokenQuantity >= FREE_SUPPLY) { require((tokenQuantity - (FREE_SUPPLY - totalSupply())) * mintPrice <= msg.value, "Not enough ether sent"); } require(totalSupply() + tokenQuantity <= MAX_SUPPLY, "All lost souls have been accounted for"); // mint _safeMint(msg.sender, tokenQuantity); } function teamClaim() external onlyOwner { require(!claimed, "Team already claimed"); // claim if (teamAddress == address(0)) revert MintToZeroAddress(); _safeMint(teamAddress, TEAM_CLAIM_AMOUNT); claimed = true; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function enableMint(bool mintStarted) external onlyOwner { started = mintStarted; } function setTeamAddress(address teamAddress_) external onlyOwner { teamAddress = teamAddress_; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if (revealed == false) { return bytes(notRevealedUri).length != 0 ? string(abi.encodePacked(notRevealedUri, _toString(tokenId), baseExtension)) : ''; } return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), baseExtension)) : ''; } function flipReveal() external onlyOwner { revealed = !revealed; } function setNotRevealedURI(string memory notRevealedURI_) external onlyOwner { notRevealedUri = notRevealedURI_; } function setMintPrice(uint256 mintPrice_) external onlyOwner { mintPrice = mintPrice_; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setBaseExtension(string memory newBaseExtension_) external onlyOwner { baseExtension = newBaseExtension_; } function withdraw(address to) external onlyOwner { uint256 balance = address(this).balance; payable(to).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_CLAIM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"mintStarted","type":"bool"}],"name":"enableMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseExtension_","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"notRevealedURI_","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"teamAddress_","type":"address"}],"name":"setTeamAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273ada438cd70aa1a8a3f386f51e1b8851caf62eb17600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603681526020016200384e60369139600b90805190602001906200008a929190620002fb565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000d8929190620002fb565b506001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506002600e55661772aa3f848000600f553480156200014757600080fd5b506040518060400160405280601881526020017f57652041726520416c6c20476f696e6720546f20566f696400000000000000008152506040518060400160405280600481526020017f57414756000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001cc929190620002fb565b508060039080519060200190620001e5929190620002fb565b50620001f66200022460201b60201c565b60008190555050506200021e620002126200022d60201b60201c565b6200023560201b60201c565b62000410565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200030990620003ab565b90600052602060002090601f0160209004810192826200032d576000855562000379565b82601f106200034857805160ff191683800117855562000379565b8280016001018555821562000379579182015b82811115620003785782518255916020019190600101906200035b565b5b5090506200038891906200038c565b5090565b5b80821115620003a75760008160009055506001016200038d565b5090565b60006002820490506001821680620003c457607f821691505b60208210811415620003db57620003da620003e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61342e80620004206000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063c68b3305116100a0578063e985e9c51161006f578063e985e9c51461070e578063f03c88911461074b578063f2c4ce1e14610776578063f2fde38b1461079f578063f4a0a528146107c857610204565b8063c68b330514610654578063c87b56dd1461067d578063da3ef23f146106ba578063e834a834146106e357610204565b806395d89b41116100e757806395d89b41146105905780639858cf19146105bb578063a0712d68146105e6578063a22cb46514610602578063b88d4fde1461062b57610204565b806370a08231146104e6578063715018a6146105235780637501f7411461053a5780638da5cb5b1461056557610204565b80633b84d9c61161019b57806355f804b31161016a57806355f804b3146104155780636352211e1461043e5780636690864e1461047b5780636817c76c146104a45780636ae146c2146104cf57610204565b80633b84d9c61461038157806342842e0e1461039857806351830227146103c157806351cff8d9146103ec57610204565b806318160ddd116101d757806318160ddd146102d75780631f2698ab1461030257806323b872dd1461032d57806332cb6b0c1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612973565b6107f1565b60405161023d9190612d1f565b60405180910390f35b34801561025257600080fd5b5061025b610883565b6040516102689190612d3a565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612a16565b610915565b6040516102a59190612cb8565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612906565b610991565b005b3480156102e357600080fd5b506102ec610b38565b6040516102f99190612e3c565b60405180910390f35b34801561030e57600080fd5b50610317610b4f565b6040516103249190612d1f565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906127f0565b610b62565b005b34801561036257600080fd5b5061036b610b72565b6040516103789190612e3c565b60405180910390f35b34801561038d57600080fd5b50610396610b78565b005b3480156103a457600080fd5b506103bf60048036038101906103ba91906127f0565b610c20565b005b3480156103cd57600080fd5b506103d6610c40565b6040516103e39190612d1f565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190612783565b610c53565b005b34801561042157600080fd5b5061043c600480360381019061043791906129cd565b610d1f565b005b34801561044a57600080fd5b5061046560048036038101906104609190612a16565b610db5565b6040516104729190612cb8565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190612783565b610dc7565b005b3480156104b057600080fd5b506104b9610e87565b6040516104c69190612e3c565b60405180910390f35b3480156104db57600080fd5b506104e4610e8d565b005b3480156104f257600080fd5b5061050d60048036038101906105089190612783565b61102c565b60405161051a9190612e3c565b60405180910390f35b34801561052f57600080fd5b506105386110e5565b005b34801561054657600080fd5b5061054f61116d565b60405161055c9190612e3c565b60405180910390f35b34801561057157600080fd5b5061057a611173565b6040516105879190612cb8565b60405180910390f35b34801561059c57600080fd5b506105a561119d565b6040516105b29190612d3a565b60405180910390f35b3480156105c757600080fd5b506105d061122f565b6040516105dd9190612e3c565b60405180910390f35b61060060048036038101906105fb9190612a16565b611235565b005b34801561060e57600080fd5b50610629600480360381019061062491906128c6565b611438565b005b34801561063757600080fd5b50610652600480360381019061064d9190612843565b6115b0565b005b34801561066057600080fd5b5061067b60048036038101906106769190612946565b611623565b005b34801561068957600080fd5b506106a4600480360381019061069f9190612a16565b6116bc565b6040516106b19190612d3a565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906129cd565b6117de565b005b3480156106ef57600080fd5b506106f8611874565b6040516107059190612d1f565b60405180910390f35b34801561071a57600080fd5b50610735600480360381019061073091906127b0565b611887565b6040516107429190612d1f565b60405180910390f35b34801561075757600080fd5b5061076061191b565b60405161076d9190612e3c565b60405180910390f35b34801561078257600080fd5b5061079d600480360381019061079891906129cd565b611920565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190612783565b6119b6565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190612a16565b611aae565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610892906130d0565b80601f01602080910402602001604051908101604052809291908181526020018280546108be906130d0565b801561090b5780601f106108e05761010080835404028352916020019161090b565b820191906000526020600020905b8154815290600101906020018083116108ee57829003601f168201915b5050505050905090565b600061092082611b34565b610956576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099c82611b93565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a04576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a23611c61565b73ffffffffffffffffffffffffffffffffffffffff1614610a8657610a4f81610a4a611c61565b611887565b610a85576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b42611c69565b6001546000540303905090565b600d60009054906101000a900460ff1681565b610b6d838383611c72565b505050565b611a0a81565b610b8061201c565b73ffffffffffffffffffffffffffffffffffffffff16610b9e611173565b73ffffffffffffffffffffffffffffffffffffffff1614610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90612dbc565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b610c3b838383604051806020016040528060008152506115b0565b505050565b600d60029054906101000a900460ff1681565b610c5b61201c565b73ffffffffffffffffffffffffffffffffffffffff16610c79611173565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690612dbc565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d1a573d6000803e3d6000fd5b505050565b610d2761201c565b73ffffffffffffffffffffffffffffffffffffffff16610d45611173565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290612dbc565b60405180910390fd5b80600a9080519060200190610db1929190612597565b5050565b6000610dc082611b93565b9050919050565b610dcf61201c565b73ffffffffffffffffffffffffffffffffffffffff16610ded611173565b73ffffffffffffffffffffffffffffffffffffffff1614610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90612dbc565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b610e9561201c565b73ffffffffffffffffffffffffffffffffffffffff16610eb3611173565b73ffffffffffffffffffffffffffffffffffffffff1614610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090612dbc565b60405180910390fd5b600d60019054906101000a900460ff1615610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090612d7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610fe2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61100f600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166037612024565b6001600d60016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611094576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ed61201c565b73ffffffffffffffffffffffffffffffffffffffff1661110b611173565b73ffffffffffffffffffffffffffffffffffffffff1614611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890612dbc565b60405180910390fd5b61116b6000612042565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111ac906130d0565b80601f01602080910402602001604051908101604052809291908181526020018280546111d8906130d0565b80156112255780601f106111fa57610100808354040283529160200191611225565b820191906000526020600020905b81548152906001019060200180831161120857829003601f168201915b5050505050905090565b61029a81565b600d60009054906101000a900460ff16611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90612e1c565b60405180910390fd5b600e548161129861129361201c565b61102c565b6112a29190612f36565b11156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90612d9c565b60405180910390fd5b61029a6112ee610b38565b106113485734600f54826113029190612f8c565b1115611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90612dfc565b60405180910390fd5b6113d4565b61029a81611354610b38565b61135e9190612f36565b106113d35734600f5461136f610b38565b61029a61137c9190612fe6565b836113879190612fe6565b6113919190612f8c565b11156113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990612dfc565b60405180910390fd5b5b5b611a0a816113e0610b38565b6113ea9190612f36565b111561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290612ddc565b60405180910390fd5b6114353382612024565b50565b611440611c61565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114b2611c61565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661155f611c61565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a49190612d1f565b60405180910390a35050565b6115bb848484611c72565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461161d576115e684848484612108565b61161c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61162b61201c565b73ffffffffffffffffffffffffffffffffffffffff16611649611173565b73ffffffffffffffffffffffffffffffffffffffff161461169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690612dbc565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60606116c782611b34565b6116fd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60029054906101000a900460ff161515141561177b576000600b8054611728906130d0565b905014156117455760405180602001604052806000815250611774565b600b61175083612268565b600c60405160200161176493929190612c87565b6040516020818303038152906040525b90506117d9565b6000600a805461178a906130d0565b905014156117a757604051806020016040528060008152506117d6565b600a6117b283612268565b600c6040516020016117c693929190612c87565b6040516020818303038152906040525b90505b919050565b6117e661201c565b73ffffffffffffffffffffffffffffffffffffffff16611804611173565b73ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190612dbc565b60405180910390fd5b80600c9080519060200190611870929190612597565b5050565b600d60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b603781565b61192861201c565b73ffffffffffffffffffffffffffffffffffffffff16611946611173565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390612dbc565b60405180910390fd5b80600b90805190602001906119b2929190612597565b5050565b6119be61201c565b73ffffffffffffffffffffffffffffffffffffffff166119dc611173565b73ffffffffffffffffffffffffffffffffffffffff1614611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990612dbc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990612d5c565b60405180910390fd5b611aab81612042565b50565b611ab661201c565b73ffffffffffffffffffffffffffffffffffffffff16611ad4611173565b73ffffffffffffffffffffffffffffffffffffffff1614611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190612dbc565b60405180910390fd5b80600f8190555050565b600081611b3f611c69565b11158015611b4e575060005482105b8015611b8c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611ba2611c69565b11611c2a57600054811015611c295760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c27575b6000811415611c1d576004600083600190039350838152602001908152602001600020549050611bf2565b8092505050611c5c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611c7d82611b93565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ce4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d05611c61565b73ffffffffffffffffffffffffffffffffffffffff161480611d345750611d3385611d2e611c61565b611887565b5b80611d795750611d42611c61565b73ffffffffffffffffffffffffffffffffffffffff16611d6184610915565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611db2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e19576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e2685858560016122c2565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611f23866122c8565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611fad576000600184019050600060046000838152602001908152602001600020541415611fab576000548114611faa578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461201585858560016122d2565b5050505050565b600033905090565b61203e8282604051806020016040528060008152506122d8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261212e611c61565b8786866040518563ffffffff1660e01b81526004016121509493929190612cd3565b602060405180830381600087803b15801561216a57600080fd5b505af192505050801561219b57506040513d601f19601f8201168201806040525081019061219891906129a0565b60015b612215573d80600081146121cb576040519150601f19603f3d011682016040523d82523d6000602084013e6121d0565b606091505b5060008151141561220d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156122ae57600183039250600a81066030018353600a8104905061228e565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612345576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612380576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61238d60008583866122c2565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123f26001851461258d565b901b60a042901b612402866122c8565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612506575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b66000878480600101955087612108565b6124ec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061244757826000541461250157600080fd5b612571565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612507575b81600081905550505061258760008583866122d2565b50505050565b6000819050919050565b8280546125a3906130d0565b90600052602060002090601f0160209004810192826125c5576000855561260c565b82601f106125de57805160ff191683800117855561260c565b8280016001018555821561260c579182015b8281111561260b5782518255916020019190600101906125f0565b5b509050612619919061261d565b5090565b5b8082111561263657600081600090555060010161261e565b5090565b600061264d61264884612e7c565b612e57565b905082815260208101848484011115612669576126686131c5565b5b61267484828561308e565b509392505050565b600061268f61268a84612ead565b612e57565b9050828152602081018484840111156126ab576126aa6131c5565b5b6126b684828561308e565b509392505050565b6000813590506126cd8161339c565b92915050565b6000813590506126e2816133b3565b92915050565b6000813590506126f7816133ca565b92915050565b60008151905061270c816133ca565b92915050565b600082601f830112612727576127266131c0565b5b813561273784826020860161263a565b91505092915050565b600082601f830112612755576127546131c0565b5b813561276584826020860161267c565b91505092915050565b60008135905061277d816133e1565b92915050565b600060208284031215612799576127986131cf565b5b60006127a7848285016126be565b91505092915050565b600080604083850312156127c7576127c66131cf565b5b60006127d5858286016126be565b92505060206127e6858286016126be565b9150509250929050565b600080600060608486031215612809576128086131cf565b5b6000612817868287016126be565b9350506020612828868287016126be565b92505060406128398682870161276e565b9150509250925092565b6000806000806080858703121561285d5761285c6131cf565b5b600061286b878288016126be565b945050602061287c878288016126be565b935050604061288d8782880161276e565b925050606085013567ffffffffffffffff8111156128ae576128ad6131ca565b5b6128ba87828801612712565b91505092959194509250565b600080604083850312156128dd576128dc6131cf565b5b60006128eb858286016126be565b92505060206128fc858286016126d3565b9150509250929050565b6000806040838503121561291d5761291c6131cf565b5b600061292b858286016126be565b925050602061293c8582860161276e565b9150509250929050565b60006020828403121561295c5761295b6131cf565b5b600061296a848285016126d3565b91505092915050565b600060208284031215612989576129886131cf565b5b6000612997848285016126e8565b91505092915050565b6000602082840312156129b6576129b56131cf565b5b60006129c4848285016126fd565b91505092915050565b6000602082840312156129e3576129e26131cf565b5b600082013567ffffffffffffffff811115612a0157612a006131ca565b5b612a0d84828501612740565b91505092915050565b600060208284031215612a2c57612a2b6131cf565b5b6000612a3a8482850161276e565b91505092915050565b612a4c8161301a565b82525050565b612a5b8161302c565b82525050565b6000612a6c82612ef3565b612a768185612f09565b9350612a8681856020860161309d565b612a8f816131d4565b840191505092915050565b6000612aa582612efe565b612aaf8185612f1a565b9350612abf81856020860161309d565b612ac8816131d4565b840191505092915050565b6000612ade82612efe565b612ae88185612f2b565b9350612af881856020860161309d565b80840191505092915050565b60008154612b11816130d0565b612b1b8186612f2b565b94506001821660008114612b365760018114612b4757612b7a565b60ff19831686528186019350612b7a565b612b5085612ede565b60005b83811015612b7257815481890152600182019150602081019050612b53565b838801955050505b50505092915050565b6000612b90602683612f1a565b9150612b9b826131e5565b604082019050919050565b6000612bb3601483612f1a565b9150612bbe82613234565b602082019050919050565b6000612bd6602f83612f1a565b9150612be18261325d565b604082019050919050565b6000612bf9602083612f1a565b9150612c04826132ac565b602082019050919050565b6000612c1c602683612f1a565b9150612c27826132d5565b604082019050919050565b6000612c3f601583612f1a565b9150612c4a82613324565b602082019050919050565b6000612c62602f83612f1a565b9150612c6d8261334d565b604082019050919050565b612c8181613084565b82525050565b6000612c938286612b04565b9150612c9f8285612ad3565b9150612cab8284612b04565b9150819050949350505050565b6000602082019050612ccd6000830184612a43565b92915050565b6000608082019050612ce86000830187612a43565b612cf56020830186612a43565b612d026040830185612c78565b8181036060830152612d148184612a61565b905095945050505050565b6000602082019050612d346000830184612a52565b92915050565b60006020820190508181036000830152612d548184612a9a565b905092915050565b60006020820190508181036000830152612d7581612b83565b9050919050565b60006020820190508181036000830152612d9581612ba6565b9050919050565b60006020820190508181036000830152612db581612bc9565b9050919050565b60006020820190508181036000830152612dd581612bec565b9050919050565b60006020820190508181036000830152612df581612c0f565b9050919050565b60006020820190508181036000830152612e1581612c32565b9050919050565b60006020820190508181036000830152612e3581612c55565b9050919050565b6000602082019050612e516000830184612c78565b92915050565b6000612e61612e72565b9050612e6d8282613102565b919050565b6000604051905090565b600067ffffffffffffffff821115612e9757612e96613191565b5b612ea0826131d4565b9050602081019050919050565b600067ffffffffffffffff821115612ec857612ec7613191565b5b612ed1826131d4565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f4182613084565b9150612f4c83613084565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f8157612f80613133565b5b828201905092915050565b6000612f9782613084565b9150612fa283613084565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fdb57612fda613133565b5b828202905092915050565b6000612ff182613084565b9150612ffc83613084565b92508282101561300f5761300e613133565b5b828203905092915050565b600061302582613064565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130bb5780820151818401526020810190506130a0565b838111156130ca576000848401525b50505050565b600060028204905060018216806130e857607f821691505b602082108114156130fc576130fb613162565b5b50919050565b61310b826131d4565b810181811067ffffffffffffffff8211171561312a57613129613191565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5465616d20616c726561647920636c61696d6564000000000000000000000000600082015250565b7f596f75206861766520616c726561647920726563656976656420796f7572205460008201527f6f6b656e206f6620576f72736869700000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416c6c206c6f737420736f756c732068617665206265656e206163636f756e7460008201527f656420666f720000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5468652070696c6772696d61676520746f2074686973206c616e64206861732060008201527f6e6f742079657420737461727465640000000000000000000000000000000000602082015250565b6133a58161301a565b81146133b057600080fd5b50565b6133bc8161302c565b81146133c757600080fd5b50565b6133d381613038565b81146133de57600080fd5b50565b6133ea81613084565b81146133f557600080fd5b5056fea2646970667358221220b7dcf3a5c9f1847f745cd118d39f8a0560663f0db9fab732709b18f9b50553b864736f6c63430008070033697066733a2f2f516d61616f595939697a453246705076346f7448484d676f5a6544324131647539614a53353645524c6a477a51682f
Deployed Bytecode
0x6080604052600436106102045760003560e01c806370a0823111610118578063c68b3305116100a0578063e985e9c51161006f578063e985e9c51461070e578063f03c88911461074b578063f2c4ce1e14610776578063f2fde38b1461079f578063f4a0a528146107c857610204565b8063c68b330514610654578063c87b56dd1461067d578063da3ef23f146106ba578063e834a834146106e357610204565b806395d89b41116100e757806395d89b41146105905780639858cf19146105bb578063a0712d68146105e6578063a22cb46514610602578063b88d4fde1461062b57610204565b806370a08231146104e6578063715018a6146105235780637501f7411461053a5780638da5cb5b1461056557610204565b80633b84d9c61161019b57806355f804b31161016a57806355f804b3146104155780636352211e1461043e5780636690864e1461047b5780636817c76c146104a45780636ae146c2146104cf57610204565b80633b84d9c61461038157806342842e0e1461039857806351830227146103c157806351cff8d9146103ec57610204565b806318160ddd116101d757806318160ddd146102d75780631f2698ab1461030257806323b872dd1461032d57806332cb6b0c1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612973565b6107f1565b60405161023d9190612d1f565b60405180910390f35b34801561025257600080fd5b5061025b610883565b6040516102689190612d3a565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612a16565b610915565b6040516102a59190612cb8565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612906565b610991565b005b3480156102e357600080fd5b506102ec610b38565b6040516102f99190612e3c565b60405180910390f35b34801561030e57600080fd5b50610317610b4f565b6040516103249190612d1f565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906127f0565b610b62565b005b34801561036257600080fd5b5061036b610b72565b6040516103789190612e3c565b60405180910390f35b34801561038d57600080fd5b50610396610b78565b005b3480156103a457600080fd5b506103bf60048036038101906103ba91906127f0565b610c20565b005b3480156103cd57600080fd5b506103d6610c40565b6040516103e39190612d1f565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190612783565b610c53565b005b34801561042157600080fd5b5061043c600480360381019061043791906129cd565b610d1f565b005b34801561044a57600080fd5b5061046560048036038101906104609190612a16565b610db5565b6040516104729190612cb8565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190612783565b610dc7565b005b3480156104b057600080fd5b506104b9610e87565b6040516104c69190612e3c565b60405180910390f35b3480156104db57600080fd5b506104e4610e8d565b005b3480156104f257600080fd5b5061050d60048036038101906105089190612783565b61102c565b60405161051a9190612e3c565b60405180910390f35b34801561052f57600080fd5b506105386110e5565b005b34801561054657600080fd5b5061054f61116d565b60405161055c9190612e3c565b60405180910390f35b34801561057157600080fd5b5061057a611173565b6040516105879190612cb8565b60405180910390f35b34801561059c57600080fd5b506105a561119d565b6040516105b29190612d3a565b60405180910390f35b3480156105c757600080fd5b506105d061122f565b6040516105dd9190612e3c565b60405180910390f35b61060060048036038101906105fb9190612a16565b611235565b005b34801561060e57600080fd5b50610629600480360381019061062491906128c6565b611438565b005b34801561063757600080fd5b50610652600480360381019061064d9190612843565b6115b0565b005b34801561066057600080fd5b5061067b60048036038101906106769190612946565b611623565b005b34801561068957600080fd5b506106a4600480360381019061069f9190612a16565b6116bc565b6040516106b19190612d3a565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906129cd565b6117de565b005b3480156106ef57600080fd5b506106f8611874565b6040516107059190612d1f565b60405180910390f35b34801561071a57600080fd5b50610735600480360381019061073091906127b0565b611887565b6040516107429190612d1f565b60405180910390f35b34801561075757600080fd5b5061076061191b565b60405161076d9190612e3c565b60405180910390f35b34801561078257600080fd5b5061079d600480360381019061079891906129cd565b611920565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190612783565b6119b6565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190612a16565b611aae565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610892906130d0565b80601f01602080910402602001604051908101604052809291908181526020018280546108be906130d0565b801561090b5780601f106108e05761010080835404028352916020019161090b565b820191906000526020600020905b8154815290600101906020018083116108ee57829003601f168201915b5050505050905090565b600061092082611b34565b610956576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099c82611b93565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a04576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a23611c61565b73ffffffffffffffffffffffffffffffffffffffff1614610a8657610a4f81610a4a611c61565b611887565b610a85576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b42611c69565b6001546000540303905090565b600d60009054906101000a900460ff1681565b610b6d838383611c72565b505050565b611a0a81565b610b8061201c565b73ffffffffffffffffffffffffffffffffffffffff16610b9e611173565b73ffffffffffffffffffffffffffffffffffffffff1614610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90612dbc565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b610c3b838383604051806020016040528060008152506115b0565b505050565b600d60029054906101000a900460ff1681565b610c5b61201c565b73ffffffffffffffffffffffffffffffffffffffff16610c79611173565b73ffffffffffffffffffffffffffffffffffffffff1614610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690612dbc565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d1a573d6000803e3d6000fd5b505050565b610d2761201c565b73ffffffffffffffffffffffffffffffffffffffff16610d45611173565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290612dbc565b60405180910390fd5b80600a9080519060200190610db1929190612597565b5050565b6000610dc082611b93565b9050919050565b610dcf61201c565b73ffffffffffffffffffffffffffffffffffffffff16610ded611173565b73ffffffffffffffffffffffffffffffffffffffff1614610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90612dbc565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b610e9561201c565b73ffffffffffffffffffffffffffffffffffffffff16610eb3611173565b73ffffffffffffffffffffffffffffffffffffffff1614610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090612dbc565b60405180910390fd5b600d60019054906101000a900460ff1615610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090612d7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610fe2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61100f600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166037612024565b6001600d60016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611094576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ed61201c565b73ffffffffffffffffffffffffffffffffffffffff1661110b611173565b73ffffffffffffffffffffffffffffffffffffffff1614611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890612dbc565b60405180910390fd5b61116b6000612042565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111ac906130d0565b80601f01602080910402602001604051908101604052809291908181526020018280546111d8906130d0565b80156112255780601f106111fa57610100808354040283529160200191611225565b820191906000526020600020905b81548152906001019060200180831161120857829003601f168201915b5050505050905090565b61029a81565b600d60009054906101000a900460ff16611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90612e1c565b60405180910390fd5b600e548161129861129361201c565b61102c565b6112a29190612f36565b11156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90612d9c565b60405180910390fd5b61029a6112ee610b38565b106113485734600f54826113029190612f8c565b1115611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90612dfc565b60405180910390fd5b6113d4565b61029a81611354610b38565b61135e9190612f36565b106113d35734600f5461136f610b38565b61029a61137c9190612fe6565b836113879190612fe6565b6113919190612f8c565b11156113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990612dfc565b60405180910390fd5b5b5b611a0a816113e0610b38565b6113ea9190612f36565b111561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290612ddc565b60405180910390fd5b6114353382612024565b50565b611440611c61565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114b2611c61565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661155f611c61565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a49190612d1f565b60405180910390a35050565b6115bb848484611c72565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461161d576115e684848484612108565b61161c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61162b61201c565b73ffffffffffffffffffffffffffffffffffffffff16611649611173565b73ffffffffffffffffffffffffffffffffffffffff161461169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690612dbc565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60606116c782611b34565b6116fd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60029054906101000a900460ff161515141561177b576000600b8054611728906130d0565b905014156117455760405180602001604052806000815250611774565b600b61175083612268565b600c60405160200161176493929190612c87565b6040516020818303038152906040525b90506117d9565b6000600a805461178a906130d0565b905014156117a757604051806020016040528060008152506117d6565b600a6117b283612268565b600c6040516020016117c693929190612c87565b6040516020818303038152906040525b90505b919050565b6117e661201c565b73ffffffffffffffffffffffffffffffffffffffff16611804611173565b73ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190612dbc565b60405180910390fd5b80600c9080519060200190611870929190612597565b5050565b600d60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b603781565b61192861201c565b73ffffffffffffffffffffffffffffffffffffffff16611946611173565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390612dbc565b60405180910390fd5b80600b90805190602001906119b2929190612597565b5050565b6119be61201c565b73ffffffffffffffffffffffffffffffffffffffff166119dc611173565b73ffffffffffffffffffffffffffffffffffffffff1614611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990612dbc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990612d5c565b60405180910390fd5b611aab81612042565b50565b611ab661201c565b73ffffffffffffffffffffffffffffffffffffffff16611ad4611173565b73ffffffffffffffffffffffffffffffffffffffff1614611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190612dbc565b60405180910390fd5b80600f8190555050565b600081611b3f611c69565b11158015611b4e575060005482105b8015611b8c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611ba2611c69565b11611c2a57600054811015611c295760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c27575b6000811415611c1d576004600083600190039350838152602001908152602001600020549050611bf2565b8092505050611c5c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611c7d82611b93565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ce4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d05611c61565b73ffffffffffffffffffffffffffffffffffffffff161480611d345750611d3385611d2e611c61565b611887565b5b80611d795750611d42611c61565b73ffffffffffffffffffffffffffffffffffffffff16611d6184610915565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611db2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e19576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e2685858560016122c2565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611f23866122c8565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611fad576000600184019050600060046000838152602001908152602001600020541415611fab576000548114611faa578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461201585858560016122d2565b5050505050565b600033905090565b61203e8282604051806020016040528060008152506122d8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261212e611c61565b8786866040518563ffffffff1660e01b81526004016121509493929190612cd3565b602060405180830381600087803b15801561216a57600080fd5b505af192505050801561219b57506040513d601f19601f8201168201806040525081019061219891906129a0565b60015b612215573d80600081146121cb576040519150601f19603f3d011682016040523d82523d6000602084013e6121d0565b606091505b5060008151141561220d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156122ae57600183039250600a81066030018353600a8104905061228e565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612345576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612380576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61238d60008583866122c2565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123f26001851461258d565b901b60a042901b612402866122c8565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612506575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b66000878480600101955087612108565b6124ec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061244757826000541461250157600080fd5b612571565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612507575b81600081905550505061258760008583866122d2565b50505050565b6000819050919050565b8280546125a3906130d0565b90600052602060002090601f0160209004810192826125c5576000855561260c565b82601f106125de57805160ff191683800117855561260c565b8280016001018555821561260c579182015b8281111561260b5782518255916020019190600101906125f0565b5b509050612619919061261d565b5090565b5b8082111561263657600081600090555060010161261e565b5090565b600061264d61264884612e7c565b612e57565b905082815260208101848484011115612669576126686131c5565b5b61267484828561308e565b509392505050565b600061268f61268a84612ead565b612e57565b9050828152602081018484840111156126ab576126aa6131c5565b5b6126b684828561308e565b509392505050565b6000813590506126cd8161339c565b92915050565b6000813590506126e2816133b3565b92915050565b6000813590506126f7816133ca565b92915050565b60008151905061270c816133ca565b92915050565b600082601f830112612727576127266131c0565b5b813561273784826020860161263a565b91505092915050565b600082601f830112612755576127546131c0565b5b813561276584826020860161267c565b91505092915050565b60008135905061277d816133e1565b92915050565b600060208284031215612799576127986131cf565b5b60006127a7848285016126be565b91505092915050565b600080604083850312156127c7576127c66131cf565b5b60006127d5858286016126be565b92505060206127e6858286016126be565b9150509250929050565b600080600060608486031215612809576128086131cf565b5b6000612817868287016126be565b9350506020612828868287016126be565b92505060406128398682870161276e565b9150509250925092565b6000806000806080858703121561285d5761285c6131cf565b5b600061286b878288016126be565b945050602061287c878288016126be565b935050604061288d8782880161276e565b925050606085013567ffffffffffffffff8111156128ae576128ad6131ca565b5b6128ba87828801612712565b91505092959194509250565b600080604083850312156128dd576128dc6131cf565b5b60006128eb858286016126be565b92505060206128fc858286016126d3565b9150509250929050565b6000806040838503121561291d5761291c6131cf565b5b600061292b858286016126be565b925050602061293c8582860161276e565b9150509250929050565b60006020828403121561295c5761295b6131cf565b5b600061296a848285016126d3565b91505092915050565b600060208284031215612989576129886131cf565b5b6000612997848285016126e8565b91505092915050565b6000602082840312156129b6576129b56131cf565b5b60006129c4848285016126fd565b91505092915050565b6000602082840312156129e3576129e26131cf565b5b600082013567ffffffffffffffff811115612a0157612a006131ca565b5b612a0d84828501612740565b91505092915050565b600060208284031215612a2c57612a2b6131cf565b5b6000612a3a8482850161276e565b91505092915050565b612a4c8161301a565b82525050565b612a5b8161302c565b82525050565b6000612a6c82612ef3565b612a768185612f09565b9350612a8681856020860161309d565b612a8f816131d4565b840191505092915050565b6000612aa582612efe565b612aaf8185612f1a565b9350612abf81856020860161309d565b612ac8816131d4565b840191505092915050565b6000612ade82612efe565b612ae88185612f2b565b9350612af881856020860161309d565b80840191505092915050565b60008154612b11816130d0565b612b1b8186612f2b565b94506001821660008114612b365760018114612b4757612b7a565b60ff19831686528186019350612b7a565b612b5085612ede565b60005b83811015612b7257815481890152600182019150602081019050612b53565b838801955050505b50505092915050565b6000612b90602683612f1a565b9150612b9b826131e5565b604082019050919050565b6000612bb3601483612f1a565b9150612bbe82613234565b602082019050919050565b6000612bd6602f83612f1a565b9150612be18261325d565b604082019050919050565b6000612bf9602083612f1a565b9150612c04826132ac565b602082019050919050565b6000612c1c602683612f1a565b9150612c27826132d5565b604082019050919050565b6000612c3f601583612f1a565b9150612c4a82613324565b602082019050919050565b6000612c62602f83612f1a565b9150612c6d8261334d565b604082019050919050565b612c8181613084565b82525050565b6000612c938286612b04565b9150612c9f8285612ad3565b9150612cab8284612b04565b9150819050949350505050565b6000602082019050612ccd6000830184612a43565b92915050565b6000608082019050612ce86000830187612a43565b612cf56020830186612a43565b612d026040830185612c78565b8181036060830152612d148184612a61565b905095945050505050565b6000602082019050612d346000830184612a52565b92915050565b60006020820190508181036000830152612d548184612a9a565b905092915050565b60006020820190508181036000830152612d7581612b83565b9050919050565b60006020820190508181036000830152612d9581612ba6565b9050919050565b60006020820190508181036000830152612db581612bc9565b9050919050565b60006020820190508181036000830152612dd581612bec565b9050919050565b60006020820190508181036000830152612df581612c0f565b9050919050565b60006020820190508181036000830152612e1581612c32565b9050919050565b60006020820190508181036000830152612e3581612c55565b9050919050565b6000602082019050612e516000830184612c78565b92915050565b6000612e61612e72565b9050612e6d8282613102565b919050565b6000604051905090565b600067ffffffffffffffff821115612e9757612e96613191565b5b612ea0826131d4565b9050602081019050919050565b600067ffffffffffffffff821115612ec857612ec7613191565b5b612ed1826131d4565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f4182613084565b9150612f4c83613084565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f8157612f80613133565b5b828201905092915050565b6000612f9782613084565b9150612fa283613084565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fdb57612fda613133565b5b828202905092915050565b6000612ff182613084565b9150612ffc83613084565b92508282101561300f5761300e613133565b5b828203905092915050565b600061302582613064565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130bb5780820151818401526020810190506130a0565b838111156130ca576000848401525b50505050565b600060028204905060018216806130e857607f821691505b602082108114156130fc576130fb613162565b5b50919050565b61310b826131d4565b810181811067ffffffffffffffff8211171561312a57613129613191565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5465616d20616c726561647920636c61696d6564000000000000000000000000600082015250565b7f596f75206861766520616c726561647920726563656976656420796f7572205460008201527f6f6b656e206f6620576f72736869700000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416c6c206c6f737420736f756c732068617665206265656e206163636f756e7460008201527f656420666f720000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5468652070696c6772696d61676520746f2074686973206c616e64206861732060008201527f6e6f742079657420737461727465640000000000000000000000000000000000602082015250565b6133a58161301a565b81146133b057600080fd5b50565b6133bc8161302c565b81146133c757600080fd5b50565b6133d381613038565b81146133de57600080fd5b50565b6133ea81613084565b81146133f557600080fd5b5056fea2646970667358221220b7dcf3a5c9f1847f745cd118d39f8a0560663f0db9fab732709b18f9b50553b864736f6c63430008070033
Deployed Bytecode Sourcemap
44734:3301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14540:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19553:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21621:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21081:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13594:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45064:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22507:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45160:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47340:76;;;;;;;;;;;;;:::i;:::-;;22748:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45127:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47891:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47654:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19342:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46769:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45334:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46313:241;;;;;;;;;;;;;:::i;:::-;;15219:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42420:103;;;;;;;;;;;;;:::i;:::-;;45252:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41769:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19722:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45206:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45587:720;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21897:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23004:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46670:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46879:455;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47756:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45095:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22276:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45283:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47422:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42678:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47552:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14540:615;14625:4;14940:10;14925:25;;:11;:25;;;;:102;;;;15017:10;15002:25;;:11;:25;;;;14925:102;:179;;;;15094:10;15079:25;;:11;:25;;;;14925:179;14905:199;;14540:615;;;:::o;19553:100::-;19607:13;19640:5;19633:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19553:100;:::o;21621:204::-;21689:7;21714:16;21722:7;21714;:16::i;:::-;21709:64;;21739:34;;;;;;;;;;;;;;21709:64;21793:15;:24;21809:7;21793:24;;;;;;;;;;;;;;;;;;;;;21786:31;;21621:204;;;:::o;21081:474::-;21154:13;21186:27;21205:7;21186:18;:27::i;:::-;21154:61;;21236:5;21230:11;;:2;:11;;;21226:48;;;21250:24;;;;;;;;;;;;;;21226:48;21314:5;21291:28;;:19;:17;:19::i;:::-;:28;;;21287:175;;21339:44;21356:5;21363:19;:17;:19::i;:::-;21339:16;:44::i;:::-;21334:128;;21411:35;;;;;;;;;;;;;;21334:128;21287:175;21501:2;21474:15;:24;21490:7;21474:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;21539:7;21535:2;21519:28;;21528:5;21519:28;;;;;;;;;;;;21143:412;21081:474;;:::o;13594:315::-;13647:7;13875:15;:13;:15::i;:::-;13860:12;;13844:13;;:28;:46;13837:53;;13594:315;:::o;45064:26::-;;;;;;;;;;;;;:::o;22507:170::-;22641:28;22651:4;22657:2;22661:7;22641:9;:28::i;:::-;22507:170;;;:::o;45160:41::-;45197:4;45160:41;:::o;47340:76::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47402:8:::1;;;;;;;;;;;47401:9;47390:8;;:20;;;;;;;;;;;;;;;;;;47340:76::o:0;22748:185::-;22886:39;22903:4;22909:2;22913:7;22886:39;;;;;;;;;;;;:16;:39::i;:::-;22748:185;;;:::o;45127:28::-;;;;;;;;;;;;;:::o;47891:141::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47949:15:::1;47967:21;47949:39;;48005:2;47997:20;;:29;48018:7;47997:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;47940:92;47891:141:::0;:::o;47654:96::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47736:8:::1;47726:7;:18;;;;;;;;;;;;:::i;:::-;;47654:96:::0;:::o;19342:144::-;19406:7;19449:27;19468:7;19449:18;:27::i;:::-;19426:52;;19342:144;;;:::o;46769:104::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46855:12:::1;46841:11;;:26;;;;;;;;;;;;;;;;;;46769:104:::0;:::o;45334:39::-;;;;:::o;46313:241::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46369:7:::1;;;;;;;;;;;46368:8;46360:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;46449:1;46426:25;;:11;;;;;;;;;;;:25;;;46422:57;;;46460:19;;;;;;;;;;;;;;46422:57;46486:41;46496:11;;;;;;;;;;;45327:2;46486:9;:41::i;:::-;46544:4;46534:7;;:14;;;;;;;;;;;;;;;;;;46313:241::o:0;15219:224::-;15283:7;15324:1;15307:19;;:5;:19;;;15303:60;;;15335:28;;;;;;;;;;;;;;15303:60;10558:13;15381:18;:25;15400:5;15381:25;;;;;;;;;;;;;;;;:54;15374:61;;15219:224;;;:::o;42420:103::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42485:30:::1;42512:1;42485:18;:30::i;:::-;42420:103::o:0;45252:26::-;;;;:::o;41769:87::-;41815:7;41842:6;;;;;;;;;;;41835:13;;41769:87;:::o;19722:104::-;19778:13;19811:7;19804:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19722:104;:::o;45206:41::-;45244:3;45206:41;:::o;45587:720::-;45656:7;;;;;;;;;;;45648:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45773:7;;45756:13;45730:23;45740:12;:10;:12::i;:::-;45730:9;:23::i;:::-;:39;;;;:::i;:::-;:50;;45722:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45244:3;45843:13;:11;:13::i;:::-;:28;45839:306;;45921:9;45908;;45892:13;:25;;;;:::i;:::-;:38;;45884:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;45839:306;;;45244:3;45990:13;45974;:11;:13::i;:::-;:29;;;;:::i;:::-;:44;45970:175;;46102:9;46089;;46071:13;:11;:13::i;:::-;45244:3;46057:27;;;;:::i;:::-;46040:13;:45;;;;:::i;:::-;46039:59;;;;:::i;:::-;:72;;46031:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;45970:175;45839:306;45197:4;46175:13;46159;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;46151:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;46265:36;46275:10;46287:13;46265:9;:36::i;:::-;45587:720;:::o;21897:308::-;22008:19;:17;:19::i;:::-;21996:31;;:8;:31;;;21992:61;;;22036:17;;;;;;;;;;;;;;21992:61;22118:8;22066:18;:39;22085:19;:17;:19::i;:::-;22066:39;;;;;;;;;;;;;;;:49;22106:8;22066:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22178:8;22142:55;;22157:19;:17;:19::i;:::-;22142:55;;;22188:8;22142:55;;;;;;:::i;:::-;;;;;;;;21897:308;;:::o;23004:396::-;23171:28;23181:4;23187:2;23191:7;23171:9;:28::i;:::-;23232:1;23214:2;:14;;;:19;23210:183;;23253:56;23284:4;23290:2;23294:7;23303:5;23253:30;:56::i;:::-;23248:145;;23337:40;;;;;;;;;;;;;;23248:145;23210:183;23004:396;;;;:::o;46670:93::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46746:11:::1;46736:7;;:21;;;;;;;;;;;;;;;;;;46670:93:::0;:::o;46879:455::-;46952:13;46979:16;46987:7;46979;:16::i;:::-;46974:59;;47004:29;;;;;;;;;;;;;;46974:59;47058:5;47046:17;;:8;;;;;;;;;;;:17;;;47042:165;;;47115:1;47089:14;47083:28;;;;;:::i;:::-;;;:33;;:116;;;;;;;;;;;;;;;;;47143:14;47159:18;47169:7;47159:9;:18::i;:::-;47179:13;47126:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47083:116;47076:123;;;;47042:165;47251:1;47232:7;47226:21;;;;;:::i;:::-;;;:26;;:102;;;;;;;;;;;;;;;;;47279:7;47288:18;47298:7;47288:9;:18::i;:::-;47308:13;47262:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47226:102;47219:109;;46879:455;;;;:::o;47756:129::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47862:17:::1;47846:13;:33;;;;;;;;;;;;:::i;:::-;;47756:129:::0;:::o;45095:27::-;;;;;;;;;;;;;:::o;22276:164::-;22373:4;22397:18;:25;22416:5;22397:25;;;;;;;;;;;;;;;:35;22423:8;22397:35;;;;;;;;;;;;;;;;;;;;;;;;;22390:42;;22276:164;;;;:::o;45283:46::-;45327:2;45283:46;:::o;47422:124::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47525:15:::1;47508:14;:32;;;;;;;;;;;;:::i;:::-;;47422:124:::0;:::o;42678:201::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42787:1:::1;42767:22;;:8;:22;;;;42759:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42843:28;42862:8;42843:18;:28::i;:::-;42678:201:::0;:::o;47552:96::-;42000:12;:10;:12::i;:::-;41989:23;;:7;:5;:7::i;:::-;:23;;;41981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47632:10:::1;47620:9;:22;;;;47552:96:::0;:::o;23655:273::-;23712:4;23768:7;23749:15;:13;:15::i;:::-;:26;;:66;;;;;23802:13;;23792:7;:23;23749:66;:152;;;;;23900:1;11328:8;23853:17;:26;23871:7;23853:26;;;;;;;;;;;;:43;:48;23749:152;23729:172;;23655:273;;;:::o;16857:1129::-;16924:7;16944:12;16959:7;16944:22;;17027:4;17008:15;:13;:15::i;:::-;:23;17004:915;;17061:13;;17054:4;:20;17050:869;;;17099:14;17116:17;:23;17134:4;17116:23;;;;;;;;;;;;17099:40;;17232:1;11328:8;17205:6;:23;:28;17201:699;;;17724:113;17741:1;17731:6;:11;17724:113;;;17784:17;:25;17802:6;;;;;;;17784:25;;;;;;;;;;;;17775:34;;17724:113;;;17870:6;17863:13;;;;;;17201:699;17076:843;17050:869;17004:915;17947:31;;;;;;;;;;;;;;16857:1129;;;;:::o;37637:105::-;37697:7;37724:10;37717:17;;37637:105;:::o;45484:97::-;45549:7;45574:1;45567:8;;45484:97;:::o;28894:2515::-;29009:27;29039;29058:7;29039:18;:27::i;:::-;29009:57;;29124:4;29083:45;;29099:19;29083:45;;;29079:86;;29137:28;;;;;;;;;;;;;;29079:86;29178:22;29227:4;29204:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;29248:43;29265:4;29271:19;:17;:19::i;:::-;29248:16;:43::i;:::-;29204:87;:147;;;;29332:19;:17;:19::i;:::-;29308:43;;:20;29320:7;29308:11;:20::i;:::-;:43;;;29204:147;29178:174;;29370:17;29365:66;;29396:35;;;;;;;;;;;;;;29365:66;29460:1;29446:16;;:2;:16;;;29442:52;;;29471:23;;;;;;;;;;;;;;29442:52;29507:43;29529:4;29535:2;29539:7;29548:1;29507:21;:43::i;:::-;29623:15;:24;29639:7;29623:24;;;;;;;;;;;;29616:31;;;;;;;;;;;30015:18;:24;30034:4;30015:24;;;;;;;;;;;;;;;;30013:26;;;;;;;;;;;;30084:18;:22;30103:2;30084:22;;;;;;;;;;;;;;;;30082:24;;;;;;;;;;;11610:8;11212:3;30465:15;:41;;30423:21;30441:2;30423:17;:21::i;:::-;:84;:128;30377:17;:26;30395:7;30377:26;;;;;;;;;;;:174;;;;30721:1;11610:8;30671:19;:46;:51;30667:626;;;30743:19;30775:1;30765:7;:11;30743:33;;30932:1;30898:17;:30;30916:11;30898:30;;;;;;;;;;;;:35;30894:384;;;31036:13;;31021:11;:28;31017:242;;31216:19;31183:17;:30;31201:11;31183:30;;;;;;;;;;;:52;;;;31017:242;30894:384;30724:569;30667:626;31340:7;31336:2;31321:27;;31330:4;31321:27;;;;;;;;;;;;31359:42;31380:4;31386:2;31390:7;31399:1;31359:20;:42::i;:::-;28998:2411;;28894:2515;;;:::o;40493:98::-;40546:7;40573:10;40566:17;;40493:98;:::o;24012:104::-;24081:27;24091:2;24095:8;24081:27;;;;;;;;;;;;:9;:27::i;:::-;24012:104;;:::o;43039:191::-;43113:16;43132:6;;;;;;;;;;;43113:25;;43158:8;43149:6;;:17;;;;;;;;;;;;;;;;;;43213:8;43182:40;;43203:8;43182:40;;;;;;;;;;;;43102:128;43039:191;:::o;35106:716::-;35269:4;35315:2;35290:45;;;35336:19;:17;:19::i;:::-;35357:4;35363:7;35372:5;35290:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35286:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35590:1;35573:6;:13;:18;35569:235;;;35619:40;;;;;;;;;;;;;;35569:235;35762:6;35756:13;35747:6;35743:2;35739:15;35732:38;35286:529;35459:54;;;35449:64;;;:6;:64;;;;35442:71;;;35106:716;;;;;;:::o;37848:1959::-;37905:17;38326:3;38319:4;38313:11;38309:21;38302:28;;38417:3;38411:4;38404:17;38523:3;38980:5;39110:1;39105:3;39101:11;39094:18;;39247:2;39241:4;39237:13;39233:2;39229:22;39224:3;39216:36;39288:2;39282:4;39278:13;39270:21;;38871:682;39307:4;38871:682;;;39482:1;39477:3;39473:11;39466:18;;39533:2;39527:4;39523:13;39519:2;39515:22;39510:3;39502:36;39403:2;39397:4;39393:13;39385:21;;38871:682;;;38875:431;39604:3;39599;39595:13;39719:2;39714:3;39710:12;39703:19;;39782:6;39777:3;39770:19;37944:1856;;37848:1959;;;:::o;36470:159::-;;;;;:::o;20642:148::-;20706:14;20767:5;20757:15;;20642:148;;;:::o;37288:158::-;;;;;:::o;24489:2236::-;24612:20;24635:13;;24612:36;;24677:1;24663:16;;:2;:16;;;24659:48;;;24688:19;;;;;;;;;;;;;;24659:48;24734:1;24722:8;:13;24718:44;;;24744:18;;;;;;;;;;;;;;24718:44;24775:61;24805:1;24809:2;24813:12;24827:8;24775:21;:61::i;:::-;25379:1;10695:2;25350:1;:25;;25349:31;25337:8;:44;25311:18;:22;25330:2;25311:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;11475:3;25780:29;25807:1;25795:8;:13;25780:14;:29::i;:::-;:56;;11212:3;25717:15;:41;;25675:21;25693:2;25675:17;:21::i;:::-;:84;:162;25624:17;:31;25642:12;25624:31;;;;;;;;;;;:213;;;;25854:20;25877:12;25854:35;;25904:11;25933:8;25918:12;:23;25904:37;;25980:1;25962:2;:14;;;:19;25958:635;;26002:313;26058:12;26054:2;26033:38;;26050:1;26033:38;;;;;;;;;;;;26099:69;26138:1;26142:2;26146:14;;;;;;26162:5;26099:30;:69::i;:::-;26094:174;;26204:40;;;;;;;;;;;;;;26094:174;26310:3;26295:12;:18;26002:313;;26396:12;26379:13;;:29;26375:43;;26410:8;;;26375:43;25958:635;;;26459:119;26515:14;;;;;;26511:2;26490:40;;26507:1;26490:40;;;;;;;;;;;;26573:3;26558:12;:18;26459:119;;25958:635;26623:12;26607:13;:28;;;;25088:1559;;26657:60;26686:1;26690:2;26694:12;26708:8;26657:20;:60::i;:::-;24601:2124;24489:2236;;;:::o;20877:142::-;20935:14;20996:5;20986:15;;20877:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:118::-;12411:24;12429:5;12411:24;:::i;:::-;12406:3;12399:37;12324:118;;:::o;12448:583::-;12670:3;12692:92;12780:3;12771:6;12692:92;:::i;:::-;12685:99;;12801:95;12892:3;12883:6;12801:95;:::i;:::-;12794:102;;12913:92;13001:3;12992:6;12913:92;:::i;:::-;12906:99;;13022:3;13015:10;;12448:583;;;;;;:::o;13037:222::-;13130:4;13168:2;13157:9;13153:18;13145:26;;13181:71;13249:1;13238:9;13234:17;13225:6;13181:71;:::i;:::-;13037:222;;;;:::o;13265:640::-;13460:4;13498:3;13487:9;13483:19;13475:27;;13512:71;13580:1;13569:9;13565:17;13556:6;13512:71;:::i;:::-;13593:72;13661:2;13650:9;13646:18;13637:6;13593:72;:::i;:::-;13675;13743:2;13732:9;13728:18;13719:6;13675:72;:::i;:::-;13794:9;13788:4;13784:20;13779:2;13768:9;13764:18;13757:48;13822:76;13893:4;13884:6;13822:76;:::i;:::-;13814:84;;13265:640;;;;;;;:::o;13911:210::-;13998:4;14036:2;14025:9;14021:18;14013:26;;14049:65;14111:1;14100:9;14096:17;14087:6;14049:65;:::i;:::-;13911:210;;;;:::o;14127:313::-;14240:4;14278:2;14267:9;14263:18;14255:26;;14327:9;14321:4;14317:20;14313:1;14302:9;14298:17;14291:47;14355:78;14428:4;14419:6;14355:78;:::i;:::-;14347:86;;14127:313;;;;:::o;14446:419::-;14612:4;14650:2;14639:9;14635:18;14627:26;;14699:9;14693:4;14689:20;14685:1;14674:9;14670:17;14663:47;14727:131;14853:4;14727:131;:::i;:::-;14719:139;;14446:419;;;:::o;14871:::-;15037:4;15075:2;15064:9;15060:18;15052:26;;15124:9;15118:4;15114:20;15110:1;15099:9;15095:17;15088:47;15152:131;15278:4;15152:131;:::i;:::-;15144:139;;14871:419;;;:::o;15296:::-;15462:4;15500:2;15489:9;15485:18;15477:26;;15549:9;15543:4;15539:20;15535:1;15524:9;15520:17;15513:47;15577:131;15703:4;15577:131;:::i;:::-;15569:139;;15296:419;;;:::o;15721:::-;15887:4;15925:2;15914:9;15910:18;15902:26;;15974:9;15968:4;15964:20;15960:1;15949:9;15945:17;15938:47;16002:131;16128:4;16002:131;:::i;:::-;15994:139;;15721:419;;;:::o;16146:::-;16312:4;16350:2;16339:9;16335:18;16327:26;;16399:9;16393:4;16389:20;16385:1;16374:9;16370:17;16363:47;16427:131;16553:4;16427:131;:::i;:::-;16419:139;;16146:419;;;:::o;16571:::-;16737:4;16775:2;16764:9;16760:18;16752:26;;16824:9;16818:4;16814:20;16810:1;16799:9;16795:17;16788:47;16852:131;16978:4;16852:131;:::i;:::-;16844:139;;16571:419;;;:::o;16996:::-;17162:4;17200:2;17189:9;17185:18;17177:26;;17249:9;17243:4;17239:20;17235:1;17224:9;17220:17;17213:47;17277:131;17403:4;17277:131;:::i;:::-;17269:139;;16996:419;;;:::o;17421:222::-;17514:4;17552:2;17541:9;17537:18;17529:26;;17565:71;17633:1;17622:9;17618:17;17609:6;17565:71;:::i;:::-;17421:222;;;;:::o;17649:129::-;17683:6;17710:20;;:::i;:::-;17700:30;;17739:33;17767:4;17759:6;17739:33;:::i;:::-;17649:129;;;:::o;17784:75::-;17817:6;17850:2;17844:9;17834:19;;17784:75;:::o;17865:307::-;17926:4;18016:18;18008:6;18005:30;18002:56;;;18038:18;;:::i;:::-;18002:56;18076:29;18098:6;18076:29;:::i;:::-;18068:37;;18160:4;18154;18150:15;18142:23;;17865:307;;;:::o;18178:308::-;18240:4;18330:18;18322:6;18319:30;18316:56;;;18352:18;;:::i;:::-;18316:56;18390:29;18412:6;18390:29;:::i;:::-;18382:37;;18474:4;18468;18464:15;18456:23;;18178:308;;;:::o;18492:141::-;18541:4;18564:3;18556:11;;18587:3;18584:1;18577:14;18621:4;18618:1;18608:18;18600:26;;18492:141;;;:::o;18639:98::-;18690:6;18724:5;18718:12;18708:22;;18639:98;;;:::o;18743:99::-;18795:6;18829:5;18823:12;18813:22;;18743:99;;;:::o;18848:168::-;18931:11;18965:6;18960:3;18953:19;19005:4;19000:3;18996:14;18981:29;;18848:168;;;;:::o;19022:169::-;19106:11;19140:6;19135:3;19128:19;19180:4;19175:3;19171:14;19156:29;;19022:169;;;;:::o;19197:148::-;19299:11;19336:3;19321:18;;19197:148;;;;:::o;19351:305::-;19391:3;19410:20;19428:1;19410:20;:::i;:::-;19405:25;;19444:20;19462:1;19444:20;:::i;:::-;19439:25;;19598:1;19530:66;19526:74;19523:1;19520:81;19517:107;;;19604:18;;:::i;:::-;19517:107;19648:1;19645;19641:9;19634:16;;19351:305;;;;:::o;19662:348::-;19702:7;19725:20;19743:1;19725:20;:::i;:::-;19720:25;;19759:20;19777:1;19759:20;:::i;:::-;19754:25;;19947:1;19879:66;19875:74;19872:1;19869:81;19864:1;19857:9;19850:17;19846:105;19843:131;;;19954:18;;:::i;:::-;19843:131;20002:1;19999;19995:9;19984:20;;19662:348;;;;:::o;20016:191::-;20056:4;20076:20;20094:1;20076:20;:::i;:::-;20071:25;;20110:20;20128:1;20110:20;:::i;:::-;20105:25;;20149:1;20146;20143:8;20140:34;;;20154:18;;:::i;:::-;20140:34;20199:1;20196;20192:9;20184:17;;20016:191;;;;:::o;20213:96::-;20250:7;20279:24;20297:5;20279:24;:::i;:::-;20268:35;;20213:96;;;:::o;20315:90::-;20349:7;20392:5;20385:13;20378:21;20367:32;;20315:90;;;:::o;20411:149::-;20447:7;20487:66;20480:5;20476:78;20465:89;;20411:149;;;:::o;20566:126::-;20603:7;20643:42;20636:5;20632:54;20621:65;;20566:126;;;:::o;20698:77::-;20735:7;20764:5;20753:16;;20698:77;;;:::o;20781:154::-;20865:6;20860:3;20855;20842:30;20927:1;20918:6;20913:3;20909:16;20902:27;20781:154;;;:::o;20941:307::-;21009:1;21019:113;21033:6;21030:1;21027:13;21019:113;;;21118:1;21113:3;21109:11;21103:18;21099:1;21094:3;21090:11;21083:39;21055:2;21052:1;21048:10;21043:15;;21019:113;;;21150:6;21147:1;21144:13;21141:101;;;21230:1;21221:6;21216:3;21212:16;21205:27;21141:101;20990:258;20941:307;;;:::o;21254:320::-;21298:6;21335:1;21329:4;21325:12;21315:22;;21382:1;21376:4;21372:12;21403:18;21393:81;;21459:4;21451:6;21447:17;21437:27;;21393:81;21521:2;21513:6;21510:14;21490:18;21487:38;21484:84;;;21540:18;;:::i;:::-;21484:84;21305:269;21254:320;;;:::o;21580:281::-;21663:27;21685:4;21663:27;:::i;:::-;21655:6;21651:40;21793:6;21781:10;21778:22;21757:18;21745:10;21742:34;21739:62;21736:88;;;21804:18;;:::i;:::-;21736:88;21844:10;21840:2;21833:22;21623:238;21580:281;;:::o;21867:180::-;21915:77;21912:1;21905:88;22012:4;22009:1;22002:15;22036:4;22033:1;22026:15;22053:180;22101:77;22098:1;22091:88;22198:4;22195:1;22188:15;22222:4;22219:1;22212:15;22239:180;22287:77;22284:1;22277:88;22384:4;22381:1;22374:15;22408:4;22405:1;22398:15;22425:117;22534:1;22531;22524:12;22548:117;22657:1;22654;22647:12;22671:117;22780:1;22777;22770:12;22794:117;22903:1;22900;22893:12;22917:102;22958:6;23009:2;23005:7;23000:2;22993:5;22989:14;22985:28;22975:38;;22917:102;;;:::o;23025:225::-;23165:34;23161:1;23153:6;23149:14;23142:58;23234:8;23229:2;23221:6;23217:15;23210:33;23025:225;:::o;23256:170::-;23396:22;23392:1;23384:6;23380:14;23373:46;23256:170;:::o;23432:234::-;23572:34;23568:1;23560:6;23556:14;23549:58;23641:17;23636:2;23628:6;23624:15;23617:42;23432:234;:::o;23672:182::-;23812:34;23808:1;23800:6;23796:14;23789:58;23672:182;:::o;23860:225::-;24000:34;23996:1;23988:6;23984:14;23977:58;24069:8;24064:2;24056:6;24052:15;24045:33;23860:225;:::o;24091:171::-;24231:23;24227:1;24219:6;24215:14;24208:47;24091:171;:::o;24268:234::-;24408:34;24404:1;24396:6;24392:14;24385:58;24477:17;24472:2;24464:6;24460:15;24453:42;24268:234;:::o;24508:122::-;24581:24;24599:5;24581:24;:::i;:::-;24574:5;24571:35;24561:63;;24620:1;24617;24610:12;24561:63;24508:122;:::o;24636:116::-;24706:21;24721:5;24706:21;:::i;:::-;24699:5;24696:32;24686:60;;24742:1;24739;24732:12;24686:60;24636:116;:::o;24758:120::-;24830:23;24847:5;24830:23;:::i;:::-;24823:5;24820:34;24810:62;;24868:1;24865;24858:12;24810:62;24758:120;:::o;24884:122::-;24957:24;24975:5;24957:24;:::i;:::-;24950:5;24947:35;24937:63;;24996:1;24993;24986:12;24937:63;24884:122;:::o
Swarm Source
ipfs://b7dcf3a5c9f1847f745cd118d39f8a0560663f0db9fab732709b18f9b50553b8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.