Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
359
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CosplayClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-31 */ // SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } contract CosplayClub is ERC721AQueryable, Ownable { uint256 public wlPrice = 0.01 ether; uint256 public publicPrice = 0.02 ether; uint256 public maxSupply = 3333; uint256 public maxWlMint = 2; uint256 public wlMinted = 0; uint256 public totalMaxWlMint = 2500; uint256 public wlStartTime = 1675166400; uint256 public publicStartTime = 1675188000; string private baseURI = ''; string private baseExtension = '.json'; bool public isActive = false; mapping(address => uint256) public userMinted; address payable public devAddress = payable(0xf0f2c4B181DA7fFE320f04BA04293d553165BD26); bytes32 public merkleRoot; constructor(string memory baseURI_) ERC721A("Cosplay Club", "CPC") { baseURI = baseURI_; } function _baseURI() internal view override returns (string memory) { return baseURI; } 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), baseExtension)) : ''; } function wlMint(uint256 amount, bytes32[] calldata _merkleProof) public payable { require(isActive == true, "The sale has not started yet"); require(block.timestamp >= wlStartTime, "The sale has not started yet"); require(block.timestamp < publicStartTime, "WL sale is over now"); require(_totalMinted() + amount <= maxSupply, "Total supply exceeded"); require(wlMinted + amount <= totalMaxWlMint, "WL supply exceeded"); require(userMinted[msg.sender] + amount <= maxWlMint, "Cannot mint more than the wl limit"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid merkle proof"); require(msg.value == amount*wlPrice, "Incorrect amount of ETH"); (bool sent,) = devAddress.call{value: msg.value}(""); require(sent, "Failed to send Ether"); _safeMint(msg.sender, amount); userMinted[msg.sender] = userMinted[msg.sender] + amount; wlMinted += amount; } function mint(uint256 amount) public payable { require(isActive == true, "The sale has not started yet"); require(block.timestamp >= publicStartTime, "The sale has not started yet"); require(_totalMinted() + amount <= maxSupply, "Total supply exceeded"); require(amount <= 5, "Cannot mint more than 5 in one tx"); require(msg.value == amount*publicPrice, "Incorrect amount of ETH"); (bool sent,) = devAddress.call{value: msg.value}(""); require(sent, "Failed to send Ether"); _safeMint(msg.sender, amount); userMinted[msg.sender] = userMinted[msg.sender] + amount; } function adminMint(address minter, uint256 amount) public onlyOwner { require(_totalMinted() + amount <= maxSupply, "Total supply exceeded"); _safeMint(minter, amount); } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function setBaseExtension(string memory newBaseExtension) public onlyOwner { baseExtension = newBaseExtension; } function setPrice(uint256 newWLPrice, uint256 newPublicPrice) public onlyOwner { wlPrice = newWLPrice; publicPrice = newPublicPrice; } function setUserLimit(uint256 newLimit) public onlyOwner { maxWlMint = newLimit; } function setActive(bool newState) public onlyOwner { isActive = newState; } function setStartTime(uint256 _wlStartTime, uint256 _publicStartTime) public onlyOwner { require(_wlStartTime <= _publicStartTime, "Public round must be after WL round"); wlStartTime = _wlStartTime; publicStartTime = _publicStartTime; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setDevAddress(address payable _devAddress) public onlyOwner { devAddress = _devAddress; } function withdrawTokens(address token, address to, uint256 amount) public onlyOwner { IERC20 wToken = IERC20(token); wToken.transfer(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWlMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setActive","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_devAddress","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newWLPrice","type":"uint256"},{"internalType":"uint256","name":"newPublicPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlStartTime","type":"uint256"},{"internalType":"uint256","name":"_publicStartTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setUserLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMaxWlMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052662386f26fc1000060095566470de4df820000600a55610d05600b556002600c556000600d556109c4600e556363d902c0600f556363d9572060105560405180602001604052806000815250601190805190602001906200006792919062000322565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060129080519060200190620000b592919062000322565b506000601360006101000a81548160ff02191690831515021790555073f0f2c4b181da7ffe320f04ba04293d553165bd26601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013357600080fd5b5060405162004cd338038062004cd3833981810160405281019062000159919062000450565b6040518060400160405280600c81526020017f436f73706c617920436c756200000000000000000000000000000000000000008152506040518060400160405280600381526020017f43504300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001dd92919062000322565b508060039080519060200190620001f692919062000322565b50620002076200024f60201b60201c565b60008190555050506200022f620002236200025460201b60201c565b6200025c60201b60201c565b80601190805190602001906200024792919062000322565b505062000625565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003309062000536565b90600052602060002090601f016020900481019282620003545760008555620003a0565b82601f106200036f57805160ff1916838001178555620003a0565b82800160010185558215620003a0579182015b828111156200039f57825182559160200191906001019062000382565b5b509050620003af9190620003b3565b5090565b5b80821115620003ce576000816000905550600101620003b4565b5090565b6000620003e9620003e384620004ca565b620004a1565b90508281526020810184848401111562000408576200040762000605565b5b6200041584828562000500565b509392505050565b600082601f83011262000435576200043462000600565b5b815162000447848260208601620003d2565b91505092915050565b6000602082840312156200046957620004686200060f565b5b600082015167ffffffffffffffff8111156200048a57620004896200060a565b5b62000498848285016200041d565b91505092915050565b6000620004ad620004c0565b9050620004bb82826200056c565b919050565b6000604051905090565b600067ffffffffffffffff821115620004e857620004e7620005d1565b5b620004f38262000614565b9050602081019050919050565b60005b838110156200052057808201518184015260208101905062000503565b8381111562000530576000848401525b50505050565b600060028204905060018216806200054f57607f821691505b60208210811415620005665762000565620005a2565b5b50919050565b620005778262000614565b810181811067ffffffffffffffff82111715620005995762000598620005d1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61469e80620006356000396000f3fe6080604052600436106102725760003560e01c8063726c44e11161014f578063ba278e08116100c1578063d5abeb011161007a578063d5abeb011461093a578063da3ef23f14610965578063e58306f91461098e578063e985e9c5146109b7578063f2fde38b146109f4578063f7d9757714610a1d57610272565b8063ba278e0814610818578063be9feb3014610841578063c23dc68f1461086c578063c7f8d01a146108a9578063c87b56dd146108d4578063d0d41fe11461091157610272565b806399a2557a1161011357806399a2557a14610726578063a0712d6814610763578063a22cb4651461077f578063a945bf80146107a8578063acec338a146107d3578063b88d4fde146107fc57610272565b8063726c44e11461063f5780637cb647591461066a5780638462151c146106935780638da5cb5b146106d057806395d89b41146106fb57610272565b806342842e0e116101e85780635fd1bbc4116101ac5780635fd1bbc41461052f57806360b803311461055a5780636352211e146105835780636e416e49146105c057806370a08231146105eb578063715018a61461062857610272565b806342842e0e14610459578063463fb3231461047557806355f804b3146104a05780635bbb2177146104c95780635e35359e1461050657610272565b80631aa5e8721161023a5780631aa5e8721461036357806322f3e2d4146103a057806323b872dd146103cb5780632eb4a7ab146103e75780633ad10ef6146104125780633ef0d36d1461043d57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610338575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613494565b610a46565b6040516102ab9190613c80565b60405180910390f35b3480156102c057600080fd5b506102c9610ad8565b6040516102d69190613cb6565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613537565b610b6a565b6040516103139190613b91565b60405180910390f35b6103366004803603810190610331919061332d565b610be9565b005b34801561034457600080fd5b5061034d610d2d565b60405161035a9190613e73565b60405180910390f35b34801561036f57600080fd5b5061038a6004803603810190610385919061317d565b610d44565b6040516103979190613e73565b60405180910390f35b3480156103ac57600080fd5b506103b5610d5c565b6040516103c29190613c80565b60405180910390f35b6103e560048036038101906103e09190613217565b610d6f565b005b3480156103f357600080fd5b506103fc611094565b6040516104099190613c9b565b60405180910390f35b34801561041e57600080fd5b5061042761109a565b6040516104349190613bac565b60405180910390f35b61045760048036038101906104529190613564565b6110c0565b005b610473600480360381019061046e9190613217565b611564565b005b34801561048157600080fd5b5061048a611584565b6040516104979190613e73565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906134ee565b61158a565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906133c0565b6115ac565b6040516104fd9190613c3c565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613217565b61166f565b005b34801561053b57600080fd5b50610544611710565b6040516105519190613e73565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613537565b611716565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190613537565b611728565b6040516105b79190613b91565b60405180910390f35b3480156105cc57600080fd5b506105d561173a565b6040516105e29190613e73565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d919061317d565b611740565b60405161061f9190613e73565b60405180910390f35b34801561063457600080fd5b5061063d6117f9565b005b34801561064b57600080fd5b5061065461180d565b6040516106619190613e73565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190613467565b611813565b005b34801561069f57600080fd5b506106ba60048036038101906106b5919061317d565b611825565b6040516106c79190613c5e565b60405180910390f35b3480156106dc57600080fd5b506106e561196f565b6040516106f29190613b91565b60405180910390f35b34801561070757600080fd5b50610710611999565b60405161071d9190613cb6565b60405180910390f35b34801561073257600080fd5b5061074d6004803603810190610748919061336d565b611a2b565b60405161075a9190613c5e565b60405180910390f35b61077d60048036038101906107789190613537565b611c3f565b005b34801561078b57600080fd5b506107a660048036038101906107a191906132ed565b611f2e565b005b3480156107b457600080fd5b506107bd612039565b6040516107ca9190613e73565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f5919061340d565b61203f565b005b6108166004803603810190610811919061326a565b612064565b005b34801561082457600080fd5b5061083f600480360381019061083a91906135c4565b6120d7565b005b34801561084d57600080fd5b50610856612134565b6040516108639190613e73565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190613537565b61213a565b6040516108a09190613e58565b60405180910390f35b3480156108b557600080fd5b506108be6121a4565b6040516108cb9190613e73565b60405180910390f35b3480156108e057600080fd5b506108fb60048036038101906108f69190613537565b6121aa565b6040516109089190613cb6565b60405180910390f35b34801561091d57600080fd5b50610938600480360381019061093391906131aa565b61224c565b005b34801561094657600080fd5b5061094f612298565b60405161095c9190613e73565b60405180910390f35b34801561097157600080fd5b5061098c600480360381019061098791906134ee565b61229e565b005b34801561099a57600080fd5b506109b560048036038101906109b0919061332d565b6122c0565b005b3480156109c357600080fd5b506109de60048036038101906109d991906131d7565b61232d565b6040516109eb9190613c80565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a16919061317d565b6123c1565b005b348015610a2957600080fd5b50610a446004803603810190610a3f91906135c4565b612445565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610ae79061418f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b139061418f565b8015610b605780601f10610b3557610100808354040283529160200191610b60565b820191906000526020600020905b815481529060010190602001808311610b4357829003601f168201915b5050505050905090565b6000610b758261245f565b610bab576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf482611728565b90508073ffffffffffffffffffffffffffffffffffffffff16610c156124be565b73ffffffffffffffffffffffffffffffffffffffff1614610c7857610c4181610c3c6124be565b61232d565b610c77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610d376124c6565b6001546000540303905090565b60146020528060005260406000206000915090505481565b601360009054906101000a900460ff1681565b6000610d7a826124cb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610de1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ded84612599565b91509150610e038187610dfe6124be565b6125c0565b610e4f57610e1886610e136124be565b61232d565b610e4e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610eb6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ec38686866001612604565b8015610ece57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f9c85610f7888888761260a565b7c020000000000000000000000000000000000000000000000000000000017612632565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611024576000600185019050600060046000838152602001908152602001600020541415611022576000548114611021578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461108c868686600161265d565b505050505050565b60165481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515601360009054906101000a900460ff16151514611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90613e38565b60405180910390fd5b600f5442101561115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290613e38565b60405180910390fd5b601054421061119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690613db8565b60405180910390fd5b600b54836111ab612663565b6111b59190613fea565b11156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90613cd8565b60405180910390fd5b600e5483600d546112079190613fea565b1115611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f90613dd8565b60405180910390fd5b600c5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112969190613fea565b11156112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90613cf8565b60405180910390fd5b6000336040516020016112ea9190613b30565b604051602081830303815290604052805190602001209050611350838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060165483612676565b61138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690613e18565b60405180910390fd5b6009548461139d9190614040565b34146113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613d18565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163460405161142690613b7c565b60006040518083038185875af1925050503d8060008114611463576040519150601f19603f3d011682016040523d82523d6000602084013e611468565b606091505b50509050806114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390613d78565b60405180910390fd5b6114b6338661268d565b84601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115019190613fea565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555084600d60008282546115569190613fea565b925050819055505050505050565b61157f83838360405180602001604052806000815250612064565b505050565b600d5481565b6115926126ab565b80601190805190602001906115a8929190612e57565b5050565b6060600083839050905060008167ffffffffffffffff8111156115d2576115d16142ec565b5b60405190808252806020026020018201604052801561160b57816020015b6115f8612edd565b8152602001906001900390816115f05790505b50905060005b8281146116635761163a86868381811061162e5761162d6142bd565b5b9050602002013561213a565b82828151811061164d5761164c6142bd565b5b6020026020010181905250806001019050611611565b50809250505092915050565b6116776126ab565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b81526004016116b7929190613c13565b602060405180830381600087803b1580156116d157600080fd5b505af11580156116e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611709919061343a565b5050505050565b60105481565b61171e6126ab565b80600c8190555050565b6000611733826124cb565b9050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118016126ab565b61180b6000612729565b565b600c5481565b61181b6126ab565b8060168190555050565b6060600080600061183585611740565b905060008167ffffffffffffffff811115611853576118526142ec565b5b6040519080825280602002602001820160405280156118815781602001602082028036833780820191505090505b50905061188c612edd565b60006118966124c6565b90505b838614611961576118a9816127ef565b91508160400151156118ba57611956565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118fa57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156119555780838780600101985081518110611948576119476142bd565b5b6020026020010181815250505b5b806001019050611899565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546119a89061418f565b80601f01602080910402602001604051908101604052809291908181526020018280546119d49061418f565b8015611a215780601f106119f657610100808354040283529160200191611a21565b820191906000526020600020905b815481529060010190602001808311611a0457829003601f168201915b5050505050905090565b6060818310611a66576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a7161281a565b9050611a7b6124c6565b851015611a8d57611a8a6124c6565b94505b80841115611a99578093505b6000611aa487611740565b905084861015611ac7576000868603905081811015611ac1578091505b50611acc565b600090505b60008167ffffffffffffffff811115611ae857611ae76142ec565b5b604051908082528060200260200182016040528015611b165781602001602082028036833780820191505090505b5090506000821415611b2e5780945050505050611c38565b6000611b398861213a565b905060008160400151611b4e57816000015190505b60008990505b888114158015611b645750848714155b15611c2a57611b72816127ef565b9250826040015115611b8357611c1f565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611bc357826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1e5780848880600101995081518110611c1157611c106142bd565b5b6020026020010181815250505b5b806001019050611b54565b508583528296505050505050505b9392505050565b60011515601360009054906101000a900460ff16151514611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90613e38565b60405180910390fd5b601054421015611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190613e38565b60405180910390fd5b600b5481611ce6612663565b611cf09190613fea565b1115611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890613cd8565b60405180910390fd5b6005811115611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613d98565b60405180910390fd5b600a5481611d839190614040565b3414611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90613d18565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1634604051611e0c90613b7c565b60006040518083038185875af1925050503d8060008114611e49576040519150601f19603f3d011682016040523d82523d6000602084013e611e4e565b606091505b5050905080611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990613d78565b60405180910390fd5b611e9c338361268d565b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ee79190613fea565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b8060076000611f3b6124be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fe86124be565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202d9190613c80565b60405180910390a35050565b600a5481565b6120476126ab565b80601360006101000a81548160ff02191690831515021790555050565b61206f848484610d6f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120d15761209a84848484612823565b6120d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6120df6126ab565b80821115612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990613d58565b60405180910390fd5b81600f81905550806010819055505050565b600f5481565b612142612edd565b61214a612edd565b6121526124c6565b831080612166575061216261281a565b8310155b15612174578091505061219f565b61217d836127ef565b9050806040015115612192578091505061219f565b61219b83612983565b9150505b919050565b60095481565b60606121b58261245f565b6121eb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121f56129a3565b90506000815114156122165760405180602001604052806000815250612244565b8061222084612a35565b601260405160200161223493929190613b4b565b6040516020818303038152906040525b915050919050565b6122546126ab565b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b6122a66126ab565b80601290805190602001906122bc929190612e57565b5050565b6122c86126ab565b600b54816122d4612663565b6122de9190613fea565b111561231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690613cd8565b60405180910390fd5b612329828261268d565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123c96126ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090613d38565b60405180910390fd5b61244281612729565b50565b61244d6126ab565b8160098190555080600a819055505050565b60008161246a6124c6565b11158015612479575060005482105b80156124b7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806124da6124c6565b11612562576000548110156125615760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561255f575b600081141561255557600460008360019003935083815260200190815260200160002054905061252a565b8092505050612594565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612621868684612a8e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600061266d6124c6565b60005403905090565b6000826126838584612a97565b1490509392505050565b6126a7828260405180602001604052806000815250612aed565b5050565b6126b3612b8a565b73ffffffffffffffffffffffffffffffffffffffff166126d161196f565b73ffffffffffffffffffffffffffffffffffffffff1614612727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271e90613df8565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127f7612edd565b6128136004600084815260200190815260200160002054612b92565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128496124be565b8786866040518563ffffffff1660e01b815260040161286b9493929190613bc7565b602060405180830381600087803b15801561288557600080fd5b505af19250505080156128b657506040513d601f19601f820116820180604052508101906128b391906134c1565b60015b612930573d80600081146128e6576040519150601f19603f3d011682016040523d82523d6000602084013e6128eb565b606091505b50600081511415612928576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61298b612edd565b61299c612997836124cb565b612b92565b9050919050565b6060601180546129b29061418f565b80601f01602080910402602001604051908101604052809291908181526020018280546129de9061418f565b8015612a2b5780601f10612a0057610100808354040283529160200191612a2b565b820191906000526020600020905b815481529060010190602001808311612a0e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612a7957600184039350600a81066030018453600a8104905080612a7457612a79565b612a4e565b50828103602084039350808452505050919050565b60009392505050565b60008082905060005b8451811015612ae257612acd82868381518110612ac057612abf6142bd565b5b6020026020010151612c48565b91508080612ada906141f2565b915050612aa0565b508091505092915050565b612af78383612c73565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b8557600080549050600083820390505b612b376000868380600101945086612823565b612b6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b24578160005414612b8257600080fd5b50505b505050565b600033905090565b612b9a612edd565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000818310612c6057612c5b8284612e30565b612c6b565b612c6a8383612e30565b5b905092915050565b6000805490506000821415612cb4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cc16000848385612604565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d3883612d29600086600061260a565b612d3285612e47565b17612632565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612dd957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612d9e565b506000821415612e15576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612e2b600084838561265d565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054612e639061418f565b90600052602060002090601f016020900481019282612e855760008555612ecc565b82601f10612e9e57805160ff1916838001178555612ecc565b82800160010185558215612ecc579182015b82811115612ecb578251825591602001919060010190612eb0565b5b509050612ed99190612f2c565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612f45576000816000905550600101612f2d565b5090565b6000612f5c612f5784613eb3565b613e8e565b905082815260208101848484011115612f7857612f7761432a565b5b612f8384828561414d565b509392505050565b6000612f9e612f9984613ee4565b613e8e565b905082815260208101848484011115612fba57612fb961432a565b5b612fc584828561414d565b509392505050565b600081359050612fdc816145de565b92915050565b600081359050612ff1816145f5565b92915050565b60008083601f84011261300d5761300c614320565b5b8235905067ffffffffffffffff81111561302a5761302961431b565b5b60208301915083602082028301111561304657613045614325565b5b9250929050565b60008083601f84011261306357613062614320565b5b8235905067ffffffffffffffff8111156130805761307f61431b565b5b60208301915083602082028301111561309c5761309b614325565b5b9250929050565b6000813590506130b28161460c565b92915050565b6000815190506130c78161460c565b92915050565b6000813590506130dc81614623565b92915050565b6000813590506130f18161463a565b92915050565b6000815190506131068161463a565b92915050565b600082601f83011261312157613120614320565b5b8135613131848260208601612f49565b91505092915050565b600082601f83011261314f5761314e614320565b5b813561315f848260208601612f8b565b91505092915050565b60008135905061317781614651565b92915050565b60006020828403121561319357613192614334565b5b60006131a184828501612fcd565b91505092915050565b6000602082840312156131c0576131bf614334565b5b60006131ce84828501612fe2565b91505092915050565b600080604083850312156131ee576131ed614334565b5b60006131fc85828601612fcd565b925050602061320d85828601612fcd565b9150509250929050565b6000806000606084860312156132305761322f614334565b5b600061323e86828701612fcd565b935050602061324f86828701612fcd565b925050604061326086828701613168565b9150509250925092565b6000806000806080858703121561328457613283614334565b5b600061329287828801612fcd565b94505060206132a387828801612fcd565b93505060406132b487828801613168565b925050606085013567ffffffffffffffff8111156132d5576132d461432f565b5b6132e18782880161310c565b91505092959194509250565b6000806040838503121561330457613303614334565b5b600061331285828601612fcd565b9250506020613323858286016130a3565b9150509250929050565b6000806040838503121561334457613343614334565b5b600061335285828601612fcd565b925050602061336385828601613168565b9150509250929050565b60008060006060848603121561338657613385614334565b5b600061339486828701612fcd565b93505060206133a586828701613168565b92505060406133b686828701613168565b9150509250925092565b600080602083850312156133d7576133d6614334565b5b600083013567ffffffffffffffff8111156133f5576133f461432f565b5b6134018582860161304d565b92509250509250929050565b60006020828403121561342357613422614334565b5b6000613431848285016130a3565b91505092915050565b6000602082840312156134505761344f614334565b5b600061345e848285016130b8565b91505092915050565b60006020828403121561347d5761347c614334565b5b600061348b848285016130cd565b91505092915050565b6000602082840312156134aa576134a9614334565b5b60006134b8848285016130e2565b91505092915050565b6000602082840312156134d7576134d6614334565b5b60006134e5848285016130f7565b91505092915050565b60006020828403121561350457613503614334565b5b600082013567ffffffffffffffff8111156135225761352161432f565b5b61352e8482850161313a565b91505092915050565b60006020828403121561354d5761354c614334565b5b600061355b84828501613168565b91505092915050565b60008060006040848603121561357d5761357c614334565b5b600061358b86828701613168565b935050602084013567ffffffffffffffff8111156135ac576135ab61432f565b5b6135b886828701612ff7565b92509250509250925092565b600080604083850312156135db576135da614334565b5b60006135e985828601613168565b92505060206135fa85828601613168565b9150509250929050565b60006136108383613a4a565b60808301905092915050565b60006136288383613b03565b60208301905092915050565b61363d816140ac565b82525050565b61364c8161409a565b82525050565b61365b8161409a565b82525050565b61367261366d8261409a565b61423b565b82525050565b600061368382613f4a565b61368d8185613f90565b935061369883613f15565b8060005b838110156136c95781516136b08882613604565b97506136bb83613f76565b92505060018101905061369c565b5085935050505092915050565b60006136e182613f55565b6136eb8185613fa1565b93506136f683613f25565b8060005b8381101561372757815161370e888261361c565b975061371983613f83565b9250506001810190506136fa565b5085935050505092915050565b61373d816140be565b82525050565b61374c816140be565b82525050565b61375b816140ca565b82525050565b600061376c82613f60565b6137768185613fb2565b935061378681856020860161415c565b61378f81614339565b840191505092915050565b60006137a582613f6b565b6137af8185613fce565b93506137bf81856020860161415c565b6137c881614339565b840191505092915050565b60006137de82613f6b565b6137e88185613fdf565b93506137f881856020860161415c565b80840191505092915050565b600081546138118161418f565b61381b8186613fdf565b9450600182166000811461383657600181146138475761387a565b60ff1983168652818601935061387a565b61385085613f35565b60005b8381101561387257815481890152600182019150602081019050613853565b838801955050505b50505092915050565b6000613890601583613fce565b915061389b82614357565b602082019050919050565b60006138b3602283613fce565b91506138be82614380565b604082019050919050565b60006138d6601783613fce565b91506138e1826143cf565b602082019050919050565b60006138f9602683613fce565b9150613904826143f8565b604082019050919050565b600061391c602383613fce565b915061392782614447565b604082019050919050565b600061393f601483613fce565b915061394a82614496565b602082019050919050565b6000613962602183613fce565b915061396d826144bf565b604082019050919050565b6000613985601383613fce565b91506139908261450e565b602082019050919050565b60006139a8601283613fce565b91506139b382614537565b602082019050919050565b60006139cb602083613fce565b91506139d682614560565b602082019050919050565b60006139ee601483613fce565b91506139f982614589565b602082019050919050565b6000613a11601c83613fce565b9150613a1c826145b2565b602082019050919050565b6000613a34600083613fc3565b9150613a3f826145db565b600082019050919050565b608082016000820151613a606000850182613643565b506020820151613a736020850182613b21565b506040820151613a866040850182613734565b506060820151613a996060850182613af4565b50505050565b608082016000820151613ab56000850182613643565b506020820151613ac86020850182613b21565b506040820151613adb6040850182613734565b506060820151613aee6060850182613af4565b50505050565b613afd81614120565b82525050565b613b0c8161412f565b82525050565b613b1b8161412f565b82525050565b613b2a81614139565b82525050565b6000613b3c8284613661565b60148201915081905092915050565b6000613b5782866137d3565b9150613b6382856137d3565b9150613b6f8284613804565b9150819050949350505050565b6000613b8782613a27565b9150819050919050565b6000602082019050613ba66000830184613652565b92915050565b6000602082019050613bc16000830184613634565b92915050565b6000608082019050613bdc6000830187613652565b613be96020830186613652565b613bf66040830185613b12565b8181036060830152613c088184613761565b905095945050505050565b6000604082019050613c286000830185613652565b613c356020830184613b12565b9392505050565b60006020820190508181036000830152613c568184613678565b905092915050565b60006020820190508181036000830152613c7881846136d6565b905092915050565b6000602082019050613c956000830184613743565b92915050565b6000602082019050613cb06000830184613752565b92915050565b60006020820190508181036000830152613cd0818461379a565b905092915050565b60006020820190508181036000830152613cf181613883565b9050919050565b60006020820190508181036000830152613d11816138a6565b9050919050565b60006020820190508181036000830152613d31816138c9565b9050919050565b60006020820190508181036000830152613d51816138ec565b9050919050565b60006020820190508181036000830152613d718161390f565b9050919050565b60006020820190508181036000830152613d9181613932565b9050919050565b60006020820190508181036000830152613db181613955565b9050919050565b60006020820190508181036000830152613dd181613978565b9050919050565b60006020820190508181036000830152613df18161399b565b9050919050565b60006020820190508181036000830152613e11816139be565b9050919050565b60006020820190508181036000830152613e31816139e1565b9050919050565b60006020820190508181036000830152613e5181613a04565b9050919050565b6000608082019050613e6d6000830184613a9f565b92915050565b6000602082019050613e886000830184613b12565b92915050565b6000613e98613ea9565b9050613ea482826141c1565b919050565b6000604051905090565b600067ffffffffffffffff821115613ece57613ecd6142ec565b5b613ed782614339565b9050602081019050919050565b600067ffffffffffffffff821115613eff57613efe6142ec565b5b613f0882614339565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ff58261412f565b91506140008361412f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140355761403461425f565b5b828201905092915050565b600061404b8261412f565b91506140568361412f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561408f5761408e61425f565b5b828202905092915050565b60006140a582614100565b9050919050565b60006140b782614100565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561417a57808201518184015260208101905061415f565b83811115614189576000848401525b50505050565b600060028204905060018216806141a757607f821691505b602082108114156141bb576141ba61428e565b5b50919050565b6141ca82614339565b810181811067ffffffffffffffff821117156141e9576141e86142ec565b5b80604052505050565b60006141fd8261412f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142305761422f61425f565b5b600182019050919050565b60006142468261424d565b9050919050565b60006142588261434a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f74616c20737570706c792065786365656465640000000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2074686520776c206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f727265637420616d6f756e74206f6620455448000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c696320726f756e64206d75737420626520616674657220574c20726f60008201527f756e640000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e203520696e206f6e65207460008201527f7800000000000000000000000000000000000000000000000000000000000000602082015250565b7f574c2073616c65206973206f766572206e6f7700000000000000000000000000600082015250565b7f574c20737570706c792065786365656465640000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f5468652073616c6520686173206e6f7420737461727465642079657400000000600082015250565b50565b6145e78161409a565b81146145f257600080fd5b50565b6145fe816140ac565b811461460957600080fd5b50565b614615816140be565b811461462057600080fd5b50565b61462c816140ca565b811461463757600080fd5b50565b614643816140d4565b811461464e57600080fd5b50565b61465a8161412f565b811461466557600080fd5b5056fea2646970667358221220377124ccedb92a901ace064703d372f060783eb466244b8d8d9038c144a254b564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102725760003560e01c8063726c44e11161014f578063ba278e08116100c1578063d5abeb011161007a578063d5abeb011461093a578063da3ef23f14610965578063e58306f91461098e578063e985e9c5146109b7578063f2fde38b146109f4578063f7d9757714610a1d57610272565b8063ba278e0814610818578063be9feb3014610841578063c23dc68f1461086c578063c7f8d01a146108a9578063c87b56dd146108d4578063d0d41fe11461091157610272565b806399a2557a1161011357806399a2557a14610726578063a0712d6814610763578063a22cb4651461077f578063a945bf80146107a8578063acec338a146107d3578063b88d4fde146107fc57610272565b8063726c44e11461063f5780637cb647591461066a5780638462151c146106935780638da5cb5b146106d057806395d89b41146106fb57610272565b806342842e0e116101e85780635fd1bbc4116101ac5780635fd1bbc41461052f57806360b803311461055a5780636352211e146105835780636e416e49146105c057806370a08231146105eb578063715018a61461062857610272565b806342842e0e14610459578063463fb3231461047557806355f804b3146104a05780635bbb2177146104c95780635e35359e1461050657610272565b80631aa5e8721161023a5780631aa5e8721461036357806322f3e2d4146103a057806323b872dd146103cb5780632eb4a7ab146103e75780633ad10ef6146104125780633ef0d36d1461043d57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610338575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613494565b610a46565b6040516102ab9190613c80565b60405180910390f35b3480156102c057600080fd5b506102c9610ad8565b6040516102d69190613cb6565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613537565b610b6a565b6040516103139190613b91565b60405180910390f35b6103366004803603810190610331919061332d565b610be9565b005b34801561034457600080fd5b5061034d610d2d565b60405161035a9190613e73565b60405180910390f35b34801561036f57600080fd5b5061038a6004803603810190610385919061317d565b610d44565b6040516103979190613e73565b60405180910390f35b3480156103ac57600080fd5b506103b5610d5c565b6040516103c29190613c80565b60405180910390f35b6103e560048036038101906103e09190613217565b610d6f565b005b3480156103f357600080fd5b506103fc611094565b6040516104099190613c9b565b60405180910390f35b34801561041e57600080fd5b5061042761109a565b6040516104349190613bac565b60405180910390f35b61045760048036038101906104529190613564565b6110c0565b005b610473600480360381019061046e9190613217565b611564565b005b34801561048157600080fd5b5061048a611584565b6040516104979190613e73565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906134ee565b61158a565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906133c0565b6115ac565b6040516104fd9190613c3c565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613217565b61166f565b005b34801561053b57600080fd5b50610544611710565b6040516105519190613e73565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613537565b611716565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190613537565b611728565b6040516105b79190613b91565b60405180910390f35b3480156105cc57600080fd5b506105d561173a565b6040516105e29190613e73565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d919061317d565b611740565b60405161061f9190613e73565b60405180910390f35b34801561063457600080fd5b5061063d6117f9565b005b34801561064b57600080fd5b5061065461180d565b6040516106619190613e73565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190613467565b611813565b005b34801561069f57600080fd5b506106ba60048036038101906106b5919061317d565b611825565b6040516106c79190613c5e565b60405180910390f35b3480156106dc57600080fd5b506106e561196f565b6040516106f29190613b91565b60405180910390f35b34801561070757600080fd5b50610710611999565b60405161071d9190613cb6565b60405180910390f35b34801561073257600080fd5b5061074d6004803603810190610748919061336d565b611a2b565b60405161075a9190613c5e565b60405180910390f35b61077d60048036038101906107789190613537565b611c3f565b005b34801561078b57600080fd5b506107a660048036038101906107a191906132ed565b611f2e565b005b3480156107b457600080fd5b506107bd612039565b6040516107ca9190613e73565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f5919061340d565b61203f565b005b6108166004803603810190610811919061326a565b612064565b005b34801561082457600080fd5b5061083f600480360381019061083a91906135c4565b6120d7565b005b34801561084d57600080fd5b50610856612134565b6040516108639190613e73565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190613537565b61213a565b6040516108a09190613e58565b60405180910390f35b3480156108b557600080fd5b506108be6121a4565b6040516108cb9190613e73565b60405180910390f35b3480156108e057600080fd5b506108fb60048036038101906108f69190613537565b6121aa565b6040516109089190613cb6565b60405180910390f35b34801561091d57600080fd5b50610938600480360381019061093391906131aa565b61224c565b005b34801561094657600080fd5b5061094f612298565b60405161095c9190613e73565b60405180910390f35b34801561097157600080fd5b5061098c600480360381019061098791906134ee565b61229e565b005b34801561099a57600080fd5b506109b560048036038101906109b0919061332d565b6122c0565b005b3480156109c357600080fd5b506109de60048036038101906109d991906131d7565b61232d565b6040516109eb9190613c80565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a16919061317d565b6123c1565b005b348015610a2957600080fd5b50610a446004803603810190610a3f91906135c4565b612445565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610ae79061418f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b139061418f565b8015610b605780601f10610b3557610100808354040283529160200191610b60565b820191906000526020600020905b815481529060010190602001808311610b4357829003601f168201915b5050505050905090565b6000610b758261245f565b610bab576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf482611728565b90508073ffffffffffffffffffffffffffffffffffffffff16610c156124be565b73ffffffffffffffffffffffffffffffffffffffff1614610c7857610c4181610c3c6124be565b61232d565b610c77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610d376124c6565b6001546000540303905090565b60146020528060005260406000206000915090505481565b601360009054906101000a900460ff1681565b6000610d7a826124cb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610de1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ded84612599565b91509150610e038187610dfe6124be565b6125c0565b610e4f57610e1886610e136124be565b61232d565b610e4e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610eb6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ec38686866001612604565b8015610ece57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f9c85610f7888888761260a565b7c020000000000000000000000000000000000000000000000000000000017612632565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611024576000600185019050600060046000838152602001908152602001600020541415611022576000548114611021578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461108c868686600161265d565b505050505050565b60165481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515601360009054906101000a900460ff16151514611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90613e38565b60405180910390fd5b600f5442101561115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290613e38565b60405180910390fd5b601054421061119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690613db8565b60405180910390fd5b600b54836111ab612663565b6111b59190613fea565b11156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90613cd8565b60405180910390fd5b600e5483600d546112079190613fea565b1115611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f90613dd8565b60405180910390fd5b600c5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112969190613fea565b11156112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90613cf8565b60405180910390fd5b6000336040516020016112ea9190613b30565b604051602081830303815290604052805190602001209050611350838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060165483612676565b61138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690613e18565b60405180910390fd5b6009548461139d9190614040565b34146113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613d18565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163460405161142690613b7c565b60006040518083038185875af1925050503d8060008114611463576040519150601f19603f3d011682016040523d82523d6000602084013e611468565b606091505b50509050806114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390613d78565b60405180910390fd5b6114b6338661268d565b84601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115019190613fea565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555084600d60008282546115569190613fea565b925050819055505050505050565b61157f83838360405180602001604052806000815250612064565b505050565b600d5481565b6115926126ab565b80601190805190602001906115a8929190612e57565b5050565b6060600083839050905060008167ffffffffffffffff8111156115d2576115d16142ec565b5b60405190808252806020026020018201604052801561160b57816020015b6115f8612edd565b8152602001906001900390816115f05790505b50905060005b8281146116635761163a86868381811061162e5761162d6142bd565b5b9050602002013561213a565b82828151811061164d5761164c6142bd565b5b6020026020010181905250806001019050611611565b50809250505092915050565b6116776126ab565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b81526004016116b7929190613c13565b602060405180830381600087803b1580156116d157600080fd5b505af11580156116e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611709919061343a565b5050505050565b60105481565b61171e6126ab565b80600c8190555050565b6000611733826124cb565b9050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118016126ab565b61180b6000612729565b565b600c5481565b61181b6126ab565b8060168190555050565b6060600080600061183585611740565b905060008167ffffffffffffffff811115611853576118526142ec565b5b6040519080825280602002602001820160405280156118815781602001602082028036833780820191505090505b50905061188c612edd565b60006118966124c6565b90505b838614611961576118a9816127ef565b91508160400151156118ba57611956565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118fa57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156119555780838780600101985081518110611948576119476142bd565b5b6020026020010181815250505b5b806001019050611899565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546119a89061418f565b80601f01602080910402602001604051908101604052809291908181526020018280546119d49061418f565b8015611a215780601f106119f657610100808354040283529160200191611a21565b820191906000526020600020905b815481529060010190602001808311611a0457829003601f168201915b5050505050905090565b6060818310611a66576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611a7161281a565b9050611a7b6124c6565b851015611a8d57611a8a6124c6565b94505b80841115611a99578093505b6000611aa487611740565b905084861015611ac7576000868603905081811015611ac1578091505b50611acc565b600090505b60008167ffffffffffffffff811115611ae857611ae76142ec565b5b604051908082528060200260200182016040528015611b165781602001602082028036833780820191505090505b5090506000821415611b2e5780945050505050611c38565b6000611b398861213a565b905060008160400151611b4e57816000015190505b60008990505b888114158015611b645750848714155b15611c2a57611b72816127ef565b9250826040015115611b8357611c1f565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611bc357826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1e5780848880600101995081518110611c1157611c106142bd565b5b6020026020010181815250505b5b806001019050611b54565b508583528296505050505050505b9392505050565b60011515601360009054906101000a900460ff16151514611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90613e38565b60405180910390fd5b601054421015611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190613e38565b60405180910390fd5b600b5481611ce6612663565b611cf09190613fea565b1115611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890613cd8565b60405180910390fd5b6005811115611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613d98565b60405180910390fd5b600a5481611d839190614040565b3414611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90613d18565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1634604051611e0c90613b7c565b60006040518083038185875af1925050503d8060008114611e49576040519150601f19603f3d011682016040523d82523d6000602084013e611e4e565b606091505b5050905080611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990613d78565b60405180910390fd5b611e9c338361268d565b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ee79190613fea565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b8060076000611f3b6124be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fe86124be565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202d9190613c80565b60405180910390a35050565b600a5481565b6120476126ab565b80601360006101000a81548160ff02191690831515021790555050565b61206f848484610d6f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120d15761209a84848484612823565b6120d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6120df6126ab565b80821115612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990613d58565b60405180910390fd5b81600f81905550806010819055505050565b600f5481565b612142612edd565b61214a612edd565b6121526124c6565b831080612166575061216261281a565b8310155b15612174578091505061219f565b61217d836127ef565b9050806040015115612192578091505061219f565b61219b83612983565b9150505b919050565b60095481565b60606121b58261245f565b6121eb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121f56129a3565b90506000815114156122165760405180602001604052806000815250612244565b8061222084612a35565b601260405160200161223493929190613b4b565b6040516020818303038152906040525b915050919050565b6122546126ab565b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b6122a66126ab565b80601290805190602001906122bc929190612e57565b5050565b6122c86126ab565b600b54816122d4612663565b6122de9190613fea565b111561231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690613cd8565b60405180910390fd5b612329828261268d565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123c96126ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090613d38565b60405180910390fd5b61244281612729565b50565b61244d6126ab565b8160098190555080600a819055505050565b60008161246a6124c6565b11158015612479575060005482105b80156124b7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806124da6124c6565b11612562576000548110156125615760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561255f575b600081141561255557600460008360019003935083815260200190815260200160002054905061252a565b8092505050612594565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612621868684612a8e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600061266d6124c6565b60005403905090565b6000826126838584612a97565b1490509392505050565b6126a7828260405180602001604052806000815250612aed565b5050565b6126b3612b8a565b73ffffffffffffffffffffffffffffffffffffffff166126d161196f565b73ffffffffffffffffffffffffffffffffffffffff1614612727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271e90613df8565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127f7612edd565b6128136004600084815260200190815260200160002054612b92565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128496124be565b8786866040518563ffffffff1660e01b815260040161286b9493929190613bc7565b602060405180830381600087803b15801561288557600080fd5b505af19250505080156128b657506040513d601f19601f820116820180604052508101906128b391906134c1565b60015b612930573d80600081146128e6576040519150601f19603f3d011682016040523d82523d6000602084013e6128eb565b606091505b50600081511415612928576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61298b612edd565b61299c612997836124cb565b612b92565b9050919050565b6060601180546129b29061418f565b80601f01602080910402602001604051908101604052809291908181526020018280546129de9061418f565b8015612a2b5780601f10612a0057610100808354040283529160200191612a2b565b820191906000526020600020905b815481529060010190602001808311612a0e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612a7957600184039350600a81066030018453600a8104905080612a7457612a79565b612a4e565b50828103602084039350808452505050919050565b60009392505050565b60008082905060005b8451811015612ae257612acd82868381518110612ac057612abf6142bd565b5b6020026020010151612c48565b91508080612ada906141f2565b915050612aa0565b508091505092915050565b612af78383612c73565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b8557600080549050600083820390505b612b376000868380600101945086612823565b612b6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b24578160005414612b8257600080fd5b50505b505050565b600033905090565b612b9a612edd565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000818310612c6057612c5b8284612e30565b612c6b565b612c6a8383612e30565b5b905092915050565b6000805490506000821415612cb4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cc16000848385612604565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d3883612d29600086600061260a565b612d3285612e47565b17612632565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612dd957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612d9e565b506000821415612e15576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612e2b600084838561265d565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054612e639061418f565b90600052602060002090601f016020900481019282612e855760008555612ecc565b82601f10612e9e57805160ff1916838001178555612ecc565b82800160010185558215612ecc579182015b82811115612ecb578251825591602001919060010190612eb0565b5b509050612ed99190612f2c565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612f45576000816000905550600101612f2d565b5090565b6000612f5c612f5784613eb3565b613e8e565b905082815260208101848484011115612f7857612f7761432a565b5b612f8384828561414d565b509392505050565b6000612f9e612f9984613ee4565b613e8e565b905082815260208101848484011115612fba57612fb961432a565b5b612fc584828561414d565b509392505050565b600081359050612fdc816145de565b92915050565b600081359050612ff1816145f5565b92915050565b60008083601f84011261300d5761300c614320565b5b8235905067ffffffffffffffff81111561302a5761302961431b565b5b60208301915083602082028301111561304657613045614325565b5b9250929050565b60008083601f84011261306357613062614320565b5b8235905067ffffffffffffffff8111156130805761307f61431b565b5b60208301915083602082028301111561309c5761309b614325565b5b9250929050565b6000813590506130b28161460c565b92915050565b6000815190506130c78161460c565b92915050565b6000813590506130dc81614623565b92915050565b6000813590506130f18161463a565b92915050565b6000815190506131068161463a565b92915050565b600082601f83011261312157613120614320565b5b8135613131848260208601612f49565b91505092915050565b600082601f83011261314f5761314e614320565b5b813561315f848260208601612f8b565b91505092915050565b60008135905061317781614651565b92915050565b60006020828403121561319357613192614334565b5b60006131a184828501612fcd565b91505092915050565b6000602082840312156131c0576131bf614334565b5b60006131ce84828501612fe2565b91505092915050565b600080604083850312156131ee576131ed614334565b5b60006131fc85828601612fcd565b925050602061320d85828601612fcd565b9150509250929050565b6000806000606084860312156132305761322f614334565b5b600061323e86828701612fcd565b935050602061324f86828701612fcd565b925050604061326086828701613168565b9150509250925092565b6000806000806080858703121561328457613283614334565b5b600061329287828801612fcd565b94505060206132a387828801612fcd565b93505060406132b487828801613168565b925050606085013567ffffffffffffffff8111156132d5576132d461432f565b5b6132e18782880161310c565b91505092959194509250565b6000806040838503121561330457613303614334565b5b600061331285828601612fcd565b9250506020613323858286016130a3565b9150509250929050565b6000806040838503121561334457613343614334565b5b600061335285828601612fcd565b925050602061336385828601613168565b9150509250929050565b60008060006060848603121561338657613385614334565b5b600061339486828701612fcd565b93505060206133a586828701613168565b92505060406133b686828701613168565b9150509250925092565b600080602083850312156133d7576133d6614334565b5b600083013567ffffffffffffffff8111156133f5576133f461432f565b5b6134018582860161304d565b92509250509250929050565b60006020828403121561342357613422614334565b5b6000613431848285016130a3565b91505092915050565b6000602082840312156134505761344f614334565b5b600061345e848285016130b8565b91505092915050565b60006020828403121561347d5761347c614334565b5b600061348b848285016130cd565b91505092915050565b6000602082840312156134aa576134a9614334565b5b60006134b8848285016130e2565b91505092915050565b6000602082840312156134d7576134d6614334565b5b60006134e5848285016130f7565b91505092915050565b60006020828403121561350457613503614334565b5b600082013567ffffffffffffffff8111156135225761352161432f565b5b61352e8482850161313a565b91505092915050565b60006020828403121561354d5761354c614334565b5b600061355b84828501613168565b91505092915050565b60008060006040848603121561357d5761357c614334565b5b600061358b86828701613168565b935050602084013567ffffffffffffffff8111156135ac576135ab61432f565b5b6135b886828701612ff7565b92509250509250925092565b600080604083850312156135db576135da614334565b5b60006135e985828601613168565b92505060206135fa85828601613168565b9150509250929050565b60006136108383613a4a565b60808301905092915050565b60006136288383613b03565b60208301905092915050565b61363d816140ac565b82525050565b61364c8161409a565b82525050565b61365b8161409a565b82525050565b61367261366d8261409a565b61423b565b82525050565b600061368382613f4a565b61368d8185613f90565b935061369883613f15565b8060005b838110156136c95781516136b08882613604565b97506136bb83613f76565b92505060018101905061369c565b5085935050505092915050565b60006136e182613f55565b6136eb8185613fa1565b93506136f683613f25565b8060005b8381101561372757815161370e888261361c565b975061371983613f83565b9250506001810190506136fa565b5085935050505092915050565b61373d816140be565b82525050565b61374c816140be565b82525050565b61375b816140ca565b82525050565b600061376c82613f60565b6137768185613fb2565b935061378681856020860161415c565b61378f81614339565b840191505092915050565b60006137a582613f6b565b6137af8185613fce565b93506137bf81856020860161415c565b6137c881614339565b840191505092915050565b60006137de82613f6b565b6137e88185613fdf565b93506137f881856020860161415c565b80840191505092915050565b600081546138118161418f565b61381b8186613fdf565b9450600182166000811461383657600181146138475761387a565b60ff1983168652818601935061387a565b61385085613f35565b60005b8381101561387257815481890152600182019150602081019050613853565b838801955050505b50505092915050565b6000613890601583613fce565b915061389b82614357565b602082019050919050565b60006138b3602283613fce565b91506138be82614380565b604082019050919050565b60006138d6601783613fce565b91506138e1826143cf565b602082019050919050565b60006138f9602683613fce565b9150613904826143f8565b604082019050919050565b600061391c602383613fce565b915061392782614447565b604082019050919050565b600061393f601483613fce565b915061394a82614496565b602082019050919050565b6000613962602183613fce565b915061396d826144bf565b604082019050919050565b6000613985601383613fce565b91506139908261450e565b602082019050919050565b60006139a8601283613fce565b91506139b382614537565b602082019050919050565b60006139cb602083613fce565b91506139d682614560565b602082019050919050565b60006139ee601483613fce565b91506139f982614589565b602082019050919050565b6000613a11601c83613fce565b9150613a1c826145b2565b602082019050919050565b6000613a34600083613fc3565b9150613a3f826145db565b600082019050919050565b608082016000820151613a606000850182613643565b506020820151613a736020850182613b21565b506040820151613a866040850182613734565b506060820151613a996060850182613af4565b50505050565b608082016000820151613ab56000850182613643565b506020820151613ac86020850182613b21565b506040820151613adb6040850182613734565b506060820151613aee6060850182613af4565b50505050565b613afd81614120565b82525050565b613b0c8161412f565b82525050565b613b1b8161412f565b82525050565b613b2a81614139565b82525050565b6000613b3c8284613661565b60148201915081905092915050565b6000613b5782866137d3565b9150613b6382856137d3565b9150613b6f8284613804565b9150819050949350505050565b6000613b8782613a27565b9150819050919050565b6000602082019050613ba66000830184613652565b92915050565b6000602082019050613bc16000830184613634565b92915050565b6000608082019050613bdc6000830187613652565b613be96020830186613652565b613bf66040830185613b12565b8181036060830152613c088184613761565b905095945050505050565b6000604082019050613c286000830185613652565b613c356020830184613b12565b9392505050565b60006020820190508181036000830152613c568184613678565b905092915050565b60006020820190508181036000830152613c7881846136d6565b905092915050565b6000602082019050613c956000830184613743565b92915050565b6000602082019050613cb06000830184613752565b92915050565b60006020820190508181036000830152613cd0818461379a565b905092915050565b60006020820190508181036000830152613cf181613883565b9050919050565b60006020820190508181036000830152613d11816138a6565b9050919050565b60006020820190508181036000830152613d31816138c9565b9050919050565b60006020820190508181036000830152613d51816138ec565b9050919050565b60006020820190508181036000830152613d718161390f565b9050919050565b60006020820190508181036000830152613d9181613932565b9050919050565b60006020820190508181036000830152613db181613955565b9050919050565b60006020820190508181036000830152613dd181613978565b9050919050565b60006020820190508181036000830152613df18161399b565b9050919050565b60006020820190508181036000830152613e11816139be565b9050919050565b60006020820190508181036000830152613e31816139e1565b9050919050565b60006020820190508181036000830152613e5181613a04565b9050919050565b6000608082019050613e6d6000830184613a9f565b92915050565b6000602082019050613e886000830184613b12565b92915050565b6000613e98613ea9565b9050613ea482826141c1565b919050565b6000604051905090565b600067ffffffffffffffff821115613ece57613ecd6142ec565b5b613ed782614339565b9050602081019050919050565b600067ffffffffffffffff821115613eff57613efe6142ec565b5b613f0882614339565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ff58261412f565b91506140008361412f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140355761403461425f565b5b828201905092915050565b600061404b8261412f565b91506140568361412f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561408f5761408e61425f565b5b828202905092915050565b60006140a582614100565b9050919050565b60006140b782614100565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561417a57808201518184015260208101905061415f565b83811115614189576000848401525b50505050565b600060028204905060018216806141a757607f821691505b602082108114156141bb576141ba61428e565b5b50919050565b6141ca82614339565b810181811067ffffffffffffffff821117156141e9576141e86142ec565b5b80604052505050565b60006141fd8261412f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142305761422f61425f565b5b600182019050919050565b60006142468261424d565b9050919050565b60006142588261434a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f74616c20737570706c792065786365656465640000000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2074686520776c206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f727265637420616d6f756e74206f6620455448000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c696320726f756e64206d75737420626520616674657220574c20726f60008201527f756e640000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e203520696e206f6e65207460008201527f7800000000000000000000000000000000000000000000000000000000000000602082015250565b7f574c2073616c65206973206f766572206e6f7700000000000000000000000000600082015250565b7f574c20737570706c792065786365656465640000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f5468652073616c6520686173206e6f7420737461727465642079657400000000600082015250565b50565b6145e78161409a565b81146145f257600080fd5b50565b6145fe816140ac565b811461460957600080fd5b50565b614615816140be565b811461462057600080fd5b50565b61462c816140ca565b811461463757600080fd5b50565b614643816140d4565b811461464e57600080fd5b50565b61465a8161412f565b811461466557600080fd5b5056fea2646970667358221220377124ccedb92a901ace064703d372f060783eb466244b8d8d9038c144a254b564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
75542:4507:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24362:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25264:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31755:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31188:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21015:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76049:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76014:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35394:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76195:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76101:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76793:1080;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38315:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75762:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78756:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61288:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79874:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75885:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79165:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26657:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75796:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22199:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5392:103;;;;;;;;;;;;;:::i;:::-;;75727:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79642:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65164:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4744:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25440:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62204:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77881:666;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32313:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75643:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79269:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39106:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79366:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75839:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60701:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75601:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76449:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79754:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75689:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78866:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78555:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32704:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5650:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79000:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24362:639;24447:4;24786:10;24771:25;;:11;:25;;;;:102;;;;24863:10;24848:25;;:11;:25;;;;24771:102;:179;;;;24940:10;24925:25;;:11;:25;;;;24771:179;24751:199;;24362:639;;;:::o;25264:100::-;25318:13;25351:5;25344:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25264:100;:::o;31755:218::-;31831:7;31856:16;31864:7;31856;:16::i;:::-;31851:64;;31881:34;;;;;;;;;;;;;;31851:64;31935:15;:24;31951:7;31935:24;;;;;;;;;;;:30;;;;;;;;;;;;31928:37;;31755:218;;;:::o;31188:408::-;31277:13;31293:16;31301:7;31293;:16::i;:::-;31277:32;;31349:5;31326:28;;:19;:17;:19::i;:::-;:28;;;31322:175;;31374:44;31391:5;31398:19;:17;:19::i;:::-;31374:16;:44::i;:::-;31369:128;;31446:35;;;;;;;;;;;;;;31369:128;31322:175;31542:2;31509:15;:24;31525:7;31509:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31580:7;31576:2;31560:28;;31569:5;31560:28;;;;;;;;;;;;31266:330;31188:408;;:::o;21015:323::-;21076:7;21304:15;:13;:15::i;:::-;21289:12;;21273:13;;:28;:46;21266:53;;21015:323;:::o;76049:45::-;;;;;;;;;;;;;;;;;:::o;76014:28::-;;;;;;;;;;;;;:::o;35394:2825::-;35536:27;35566;35585:7;35566:18;:27::i;:::-;35536:57;;35651:4;35610:45;;35626:19;35610:45;;;35606:86;;35664:28;;;;;;;;;;;;;;35606:86;35706:27;35735:23;35762:35;35789:7;35762:26;:35::i;:::-;35705:92;;;;35897:68;35922:15;35939:4;35945:19;:17;:19::i;:::-;35897:24;:68::i;:::-;35892:180;;35985:43;36002:4;36008:19;:17;:19::i;:::-;35985:16;:43::i;:::-;35980:92;;36037:35;;;;;;;;;;;;;;35980:92;35892:180;36103:1;36089:16;;:2;:16;;;36085:52;;;36114:23;;;;;;;;;;;;;;36085:52;36150:43;36172:4;36178:2;36182:7;36191:1;36150:21;:43::i;:::-;36286:15;36283:160;;;36426:1;36405:19;36398:30;36283:160;36823:18;:24;36842:4;36823:24;;;;;;;;;;;;;;;;36821:26;;;;;;;;;;;;36892:18;:22;36911:2;36892:22;;;;;;;;;;;;;;;;36890:24;;;;;;;;;;;37214:146;37251:2;37300:45;37315:4;37321:2;37325:19;37300:14;:45::i;:::-;17414:8;37272:73;37214:18;:146::i;:::-;37185:17;:26;37203:7;37185:26;;;;;;;;;;;:175;;;;37531:1;17414:8;37480:19;:47;:52;37476:627;;;37553:19;37585:1;37575:7;:11;37553:33;;37742:1;37708:17;:30;37726:11;37708:30;;;;;;;;;;;;:35;37704:384;;;37846:13;;37831:11;:28;37827:242;;38026:19;37993:17;:30;38011:11;37993:30;;;;;;;;;;;:52;;;;37827:242;37704:384;37534:569;37476:627;38150:7;38146:2;38131:27;;38140:4;38131:27;;;;;;;;;;;;38169:42;38190:4;38196:2;38200:7;38209:1;38169:20;:42::i;:::-;35525:2694;;;35394:2825;;;:::o;76195:25::-;;;;:::o;76101:87::-;;;;;;;;;;;;;:::o;76793:1080::-;76904:4;76892:16;;:8;;;;;;;;;;;:16;;;76884:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;76979:11;;76960:15;:30;;76952:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;77060:15;;77042;:33;77034:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;77145:9;;77135:6;77118:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:36;;77110:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;77220:14;;77210:6;77199:8;;:17;;;;:::i;:::-;:35;;77191:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;77321:9;;77311:6;77286:10;:22;77297:10;77286:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:44;;77278:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;77382:12;77424:10;77407:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;77397:39;;;;;;77382:54;;77455:50;77474:12;;77455:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77488:10;;77500:4;77455:18;:50::i;:::-;77447:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;77571:7;;77564:6;:14;;;;:::i;:::-;77551:9;:27;77543:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;77620:9;77634:10;;;;;;;;;;;:15;;77657:9;77634:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77619:52;;;77690:4;77682:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;77740:29;77750:10;77762:6;77740:9;:29::i;:::-;77830:6;77805:10;:22;77816:10;77805:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;77780:10;:22;77791:10;77780:22;;;;;;;;;;;;;;;:56;;;;77859:6;77847:8;;:18;;;;;;;:::i;:::-;;;;;;;;76873:1000;;76793:1080;;;:::o;38315:193::-;38461:39;38478:4;38484:2;38488:7;38461:39;;;;;;;;;;;;:16;:39::i;:::-;38315:193;;;:::o;75762:27::-;;;;:::o;78756:102::-;4630:13;:11;:13::i;:::-;78840:10:::1;78830:7;:20;;;;;;;;;;;;:::i;:::-;;78756:102:::0;:::o;61288:528::-;61432:23;61498:22;61523:8;;:15;;61498:40;;61553:34;61611:14;61590:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;61553:73;;61646:9;61641:125;61662:14;61657:1;:19;61641:125;;61718:32;61738:8;;61747:1;61738:11;;;;;;;:::i;:::-;;;;;;;;61718:19;:32::i;:::-;61702:10;61713:1;61702:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;61678:3;;;;;61641:125;;;;61787:10;61780:17;;;;61288:528;;;;:::o;79874:170::-;4630:13;:11;:13::i;:::-;79969::::1;79992:5;79969:29;;80009:6;:15;;;80025:2;80029:6;80009:27;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;79958:86;79874:170:::0;;;:::o;75885:43::-;;;;:::o;79165:96::-;4630:13;:11;:13::i;:::-;79245:8:::1;79233:9;:20;;;;79165:96:::0;:::o;26657:152::-;26729:7;26772:27;26791:7;26772:18;:27::i;:::-;26749:52;;26657:152;;;:::o;75796:36::-;;;;:::o;22199:233::-;22271:7;22312:1;22295:19;;:5;:19;;;22291:60;;;22323:28;;;;;;;;;;;;;;22291:60;16358:13;22369:18;:25;22388:5;22369:25;;;;;;;;;;;;;;;;:55;22362:62;;22199:233;;;:::o;5392:103::-;4630:13;:11;:13::i;:::-;5457:30:::1;5484:1;5457:18;:30::i;:::-;5392:103::o:0;75727:28::-;;;;:::o;79642:104::-;4630:13;:11;:13::i;:::-;79727:11:::1;79714:10;:24;;;;79642:104:::0;:::o;65164:900::-;65242:16;65296:19;65330:25;65370:22;65395:16;65405:5;65395:9;:16::i;:::-;65370:41;;65426:25;65468:14;65454:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65426:57;;65498:31;;:::i;:::-;65549:9;65561:15;:13;:15::i;:::-;65549:27;;65544:472;65593:14;65578:11;:29;65544:472;;65645:15;65658:1;65645:12;:15::i;:::-;65633:27;;65683:9;:16;;;65679:73;;;65724:8;;65679:73;65800:1;65774:28;;:9;:14;;;:28;;;65770:111;;65847:9;:14;;;65827:34;;65770:111;65924:5;65903:26;;:17;:26;;;65899:102;;;65980:1;65954:8;65963:13;;;;;;65954:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;65899:102;65544:472;65609:3;;;;;65544:472;;;;66037:8;66030:15;;;;;;;65164:900;;;:::o;4744:87::-;4790:7;4817:6;;;;;;;;;;;4810:13;;4744:87;:::o;25440:104::-;25496:13;25529:7;25522:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25440:104;:::o;62204:2513::-;62347:16;62414:4;62405:5;:13;62401:45;;62427:19;;;;;;;;;;;;;;62401:45;62461:19;62495:17;62515:14;:12;:14::i;:::-;62495:34;;62615:15;:13;:15::i;:::-;62607:5;:23;62603:87;;;62659:15;:13;:15::i;:::-;62651:23;;62603:87;62766:9;62759:4;:16;62755:73;;;62803:9;62796:16;;62755:73;62842:25;62870:16;62880:5;62870:9;:16::i;:::-;62842:44;;63064:4;63056:5;:12;63052:278;;;63089:19;63118:5;63111:4;:12;63089:34;;63160:17;63146:11;:31;63142:111;;;63222:11;63202:31;;63142:111;63070:198;63052:278;;;63313:1;63293:21;;63052:278;63344:25;63386:17;63372:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63344:60;;63444:1;63423:17;:22;63419:78;;;63473:8;63466:15;;;;;;;;63419:78;63641:31;63675:26;63695:5;63675:19;:26::i;:::-;63641:60;;63716:25;63961:9;:16;;;63956:92;;64018:9;:14;;;63998:34;;63956:92;64067:9;64079:5;64067:17;;64062:478;64091:4;64086:1;:9;;:45;;;;;64114:17;64099:11;:32;;64086:45;64062:478;;;64169:15;64182:1;64169:12;:15::i;:::-;64157:27;;64207:9;:16;;;64203:73;;;64248:8;;64203:73;64324:1;64298:28;;:9;:14;;;:28;;;64294:111;;64371:9;:14;;;64351:34;;64294:111;64448:5;64427:26;;:17;:26;;;64423:102;;;64504:1;64478:8;64487:13;;;;;;64478:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;64423:102;64062:478;64133:3;;;;;64062:478;;;;64642:11;64632:8;64625:29;64690:8;64683:15;;;;;;;;62204:2513;;;;;;:::o;77881:666::-;77957:4;77945:16;;:8;;;;;;;;;;;:16;;;77937:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;78032:15;;78013;:34;;78005:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;78126:9;;78116:6;78099:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:36;;78091:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;78190:1;78180:6;:11;;78172:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;78270:11;;78263:6;:18;;;;:::i;:::-;78250:9;:31;78242:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;78323:9;78337:10;;;;;;;;;;;:15;;78360:9;78337:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78322:52;;;78393:4;78385:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;78443:29;78453:10;78465:6;78443:9;:29::i;:::-;78533:6;78508:10;:22;78519:10;78508:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;78483:10;:22;78494:10;78483:22;;;;;;;;;;;;;;;:56;;;;77926:621;77881:666;:::o;32313:234::-;32460:8;32408:18;:39;32427:19;:17;:19::i;:::-;32408:39;;;;;;;;;;;;;;;:49;32448:8;32408:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32520:8;32484:55;;32499:19;:17;:19::i;:::-;32484:55;;;32530:8;32484:55;;;;;;:::i;:::-;;;;;;;;32313:234;;:::o;75643:39::-;;;;:::o;79269:89::-;4630:13;:11;:13::i;:::-;79342:8:::1;79331;;:19;;;;;;;;;;;;;;;;;;79269:89:::0;:::o;39106:407::-;39281:31;39294:4;39300:2;39304:7;39281:12;:31::i;:::-;39345:1;39327:2;:14;;;:19;39323:183;;39366:56;39397:4;39403:2;39407:7;39416:5;39366:30;:56::i;:::-;39361:145;;39450:40;;;;;;;;;;;;;;39361:145;39323:183;39106:407;;;;:::o;79366:268::-;4630:13;:11;:13::i;:::-;79488:16:::1;79472:12;:32;;79464:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;79569:12;79555:11;:26;;;;79610:16;79592:15;:34;;;;79366:268:::0;;:::o;75839:39::-;;;;:::o;60701:428::-;60785:21;;:::i;:::-;60819:31;;:::i;:::-;60875:15;:13;:15::i;:::-;60865:7;:25;:54;;;;60905:14;:12;:14::i;:::-;60894:7;:25;;60865:54;60861:103;;;60943:9;60936:16;;;;;60861:103;60986:21;60999:7;60986:12;:21::i;:::-;60974:33;;61022:9;:16;;;61018:65;;;61062:9;61055:16;;;;;61018:65;61100:21;61113:7;61100:12;:21::i;:::-;61093:28;;;60701:428;;;;:::o;75601:35::-;;;;:::o;76449:336::-;76522:13;76553:16;76561:7;76553;:16::i;:::-;76548:59;;76578:29;;;;;;;;;;;;;;76548:59;76620:22;76645:10;:8;:10::i;:::-;76620:35;;76699:1;76679:8;76673:22;:27;;:104;;;;;;;;;;;;;;;;;76727:8;76737:18;76747:7;76737:9;:18::i;:::-;76757:13;76710:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76673:104;76666:111;;;76449:336;;;:::o;79754:112::-;4630:13;:11;:13::i;:::-;79847:11:::1;79834:10;;:24;;;;;;;;;;;;;;;;;;79754:112:::0;:::o;75689:31::-;;;;:::o;78866:126::-;4630:13;:11;:13::i;:::-;78968:16:::1;78952:13;:32;;;;;;;;;;;;:::i;:::-;;78866:126:::0;:::o;78555:193::-;4630:13;:11;:13::i;:::-;78669:9:::1;;78659:6;78642:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:36;;78634:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;78715:25;78725:6;78733;78715:9;:25::i;:::-;78555:193:::0;;:::o;32704:164::-;32801:4;32825:18;:25;32844:5;32825:25;;;;;;;;;;;;;;;:35;32851:8;32825:35;;;;;;;;;;;;;;;;;;;;;;;;;32818:42;;32704:164;;;;:::o;5650:201::-;4630:13;:11;:13::i;:::-;5759:1:::1;5739:22;;:8;:22;;;;5731:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5815:28;5834:8;5815:18;:28::i;:::-;5650:201:::0;:::o;79000:157::-;4630:13;:11;:13::i;:::-;79100:10:::1;79090:7;:20;;;;79135:14;79121:11;:28;;;;79000:157:::0;;:::o;33126:282::-;33191:4;33247:7;33228:15;:13;:15::i;:::-;:26;;:66;;;;;33281:13;;33271:7;:23;33228:66;:153;;;;;33380:1;17134:8;33332:17;:26;33350:7;33332:26;;;;;;;;;;;;:44;:49;33228:153;33208:173;;33126:282;;;:::o;55434:105::-;55494:7;55521:10;55514:17;;55434:105;:::o;20531:92::-;20587:7;20531:92;:::o;27812:1275::-;27879:7;27899:12;27914:7;27899:22;;27982:4;27963:15;:13;:15::i;:::-;:23;27959:1061;;28016:13;;28009:4;:20;28005:1015;;;28054:14;28071:17;:23;28089:4;28071:23;;;;;;;;;;;;28054:40;;28188:1;17134:8;28160:6;:24;:29;28156:845;;;28825:113;28842:1;28832:6;:11;28825:113;;;28885:17;:25;28903:6;;;;;;;28885:25;;;;;;;;;;;;28876:34;;28825:113;;;28971:6;28964:13;;;;;;28156:845;28031:989;28005:1015;27959:1061;29048:31;;;;;;;;;;;;;;27812:1275;;;;:::o;34289:485::-;34391:27;34420:23;34461:38;34502:15;:24;34518:7;34502:24;;;;;;;;;;;34461:65;;34679:18;34656:41;;34736:19;34730:26;34711:45;;34641:126;34289:485;;;:::o;33517:659::-;33666:11;33831:16;33824:5;33820:28;33811:37;;33991:16;33980:9;33976:32;33963:45;;34141:15;34130:9;34127:30;34119:5;34108:9;34105:20;34102:56;34092:66;;33517:659;;;;;:::o;40175:159::-;;;;;:::o;54743:311::-;54878:7;54898:16;17538:3;54924:19;:41;;54898:68;;17538:3;54992:31;55003:4;55009:2;55013:9;54992:10;:31::i;:::-;54984:40;;:62;;54977:69;;;54743:311;;;;;:::o;29635:450::-;29715:14;29883:16;29876:5;29872:28;29863:37;;30060:5;30046:11;30021:23;30017:41;30014:52;30007:5;30004:63;29994:73;;29635:450;;;;:::o;40999:158::-;;;;;:::o;21436:296::-;21491:7;21698:15;:13;:15::i;:::-;21682:13;;:31;21675:38;;21436:296;:::o;67107:156::-;67198:4;67251;67222:25;67235:5;67242:4;67222:12;:25::i;:::-;:33;67215:40;;67107:156;;;;;:::o;49266:112::-;49343:27;49353:2;49357:8;49343:27;;;;;;;;;;;;:9;:27::i;:::-;49266:112;;:::o;4909:132::-;4984:12;:10;:12::i;:::-;4973:23;;:7;:5;:7::i;:::-;:23;;;4965:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4909:132::o;6011:191::-;6085:16;6104:6;;;;;;;;;;;6085:25;;6130:8;6121:6;;:17;;;;;;;;;;;;;;;;;;6185:8;6154:40;;6175:8;6154:40;;;;;;;;;;;;6074:128;6011:191;:::o;27260:161::-;27328:21;;:::i;:::-;27369:44;27388:17;:24;27406:5;27388:24;;;;;;;;;;;;27369:18;:44::i;:::-;27362:51;;27260:161;;;:::o;20702:103::-;20757:7;20784:13;;20777:20;;20702:103;:::o;41597:716::-;41760:4;41806:2;41781:45;;;41827:19;:17;:19::i;:::-;41848:4;41854:7;41863:5;41781:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41777:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42081:1;42064:6;:13;:18;42060:235;;;42110:40;;;;;;;;;;;;;;42060:235;42253:6;42247:13;42238:6;42234:2;42230:15;42223:38;41777:529;41950:54;;;41940:64;;;:6;:64;;;;41933:71;;;41597:716;;;;;;:::o;26998:166::-;27068:21;;:::i;:::-;27109:47;27128:27;27147:7;27128:18;:27::i;:::-;27109:18;:47::i;:::-;27102:54;;26998:166;;;:::o;76341:100::-;76393:13;76426:7;76419:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76341:100;:::o;55641:1745::-;55706:17;56140:4;56133;56127:11;56123:22;56232:1;56226:4;56219:15;56307:4;56304:1;56300:12;56293:19;;56389:1;56384:3;56377:14;56493:3;56732:5;56714:428;56740:1;56714:428;;;56780:1;56775:3;56771:11;56764:18;;56951:2;56945:4;56941:13;56937:2;56933:22;56928:3;56920:36;57045:2;57039:4;57035:13;57027:21;;57112:4;57102:25;;57120:5;;57102:25;56714:428;;;56718:21;57181:3;57176;57172:13;57296:4;57291:3;57287:14;57280:21;;57361:6;57356:3;57349:19;55745:1634;;;55641:1745;;;:::o;54444:147::-;54581:6;54444:147;;;;;:::o;67906:296::-;67989:7;68009:20;68032:4;68009:27;;68052:9;68047:118;68071:5;:12;68067:1;:16;68047:118;;;68120:33;68130:12;68144:5;68150:1;68144:8;;;;;;;;:::i;:::-;;;;;;;;68120:9;:33::i;:::-;68105:48;;68085:3;;;;;:::i;:::-;;;;68047:118;;;;68182:12;68175:19;;;67906:296;;;;:::o;48493:689::-;48624:19;48630:2;48634:8;48624:5;:19::i;:::-;48703:1;48685:2;:14;;;:19;48681:483;;48725:11;48739:13;;48725:27;;48771:13;48793:8;48787:3;:14;48771:30;;48820:233;48851:62;48890:1;48894:2;48898:7;;;;;;48907:5;48851:30;:62::i;:::-;48846:167;;48949:40;;;;;;;;;;;;;;48846:167;49048:3;49040:5;:11;48820:233;;49135:3;49118:13;;:20;49114:34;;49140:8;;;49114:34;48706:458;;48681:483;48493:689;;;:::o;3453:98::-;3506:7;3533:10;3526:17;;3453:98;:::o;29186:366::-;29252:31;;:::i;:::-;29329:6;29296:9;:14;;:41;;;;;;;;;;;17017:3;29382:6;:33;;29348:9;:24;;:68;;;;;;;;;;;29474:1;17134:8;29446:6;:24;:29;;29427:9;:16;;:48;;;;;;;;;;;17538:3;29515:6;:28;;29486:9;:19;;:58;;;;;;;;;;;29186:366;;;:::o;75110:149::-;75173:7;75204:1;75200;:5;:51;;75231:20;75246:1;75249;75231:14;:20::i;:::-;75200:51;;;75208:20;75223:1;75226;75208:14;:20::i;:::-;75200:51;75193:58;;75110:149;;;;:::o;42775:2966::-;42848:20;42871:13;;42848:36;;42911:1;42899:8;:13;42895:44;;;42921:18;;;;;;;;;;;;;;42895:44;42952:61;42982:1;42986:2;42990:12;43004:8;42952:21;:61::i;:::-;43496:1;16496:2;43466:1;:26;;43465:32;43453:8;:45;43427:18;:22;43446:2;43427:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43775:139;43812:2;43866:33;43889:1;43893:2;43897:1;43866:14;:33::i;:::-;43833:30;43854:8;43833:20;:30::i;:::-;:66;43775:18;:139::i;:::-;43741:17;:31;43759:12;43741:31;;;;;;;;;;;:173;;;;43931:16;43962:11;43991:8;43976:12;:23;43962:37;;44512:16;44508:2;44504:25;44492:37;;44884:12;44844:8;44803:1;44741:25;44682:1;44621;44594:335;45255:1;45241:12;45237:20;45195:346;45296:3;45287:7;45284:16;45195:346;;45514:7;45504:8;45501:1;45474:25;45471:1;45468;45463:59;45349:1;45340:7;45336:15;45325:26;;45195:346;;;45199:77;45586:1;45574:8;:13;45570:45;;;45596:19;;;;;;;;;;;;;;45570:45;45648:3;45632:13;:19;;;;43201:2462;;45673:60;45702:1;45706:2;45710:12;45724:8;45673:20;:60::i;:::-;42837:2904;42775:2966;;:::o;75267:268::-;75335:13;75442:1;75436:4;75429:15;75471:1;75465:4;75458:15;75512:4;75506;75496:21;75487:30;;75267:268;;;;:::o;30187:324::-;30257:14;30490:1;30480:8;30477:15;30451:24;30447:46;30437:56;;30187:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1164:568::-;1237:8;1247:6;1297:3;1290:4;1282:6;1278:17;1274:27;1264:122;;1305:79;;:::i;:::-;1264:122;1418:6;1405:20;1395:30;;1448:18;1440:6;1437:30;1434:117;;;1470:79;;:::i;:::-;1434:117;1584:4;1576:6;1572:17;1560:29;;1638:3;1630:4;1622:6;1618:17;1608:8;1604:32;1601:41;1598:128;;;1645:79;;:::i;:::-;1598:128;1164:568;;;;;:::o;1755:::-;1828:8;1838:6;1888:3;1881:4;1873:6;1869:17;1865:27;1855:122;;1896:79;;:::i;:::-;1855:122;2009:6;1996:20;1986:30;;2039:18;2031:6;2028:30;2025:117;;;2061:79;;:::i;:::-;2025:117;2175:4;2167:6;2163:17;2151:29;;2229:3;2221:4;2213:6;2209:17;2199:8;2195:32;2192:41;2189:128;;;2236:79;;:::i;:::-;2189:128;1755:568;;;;;:::o;2329:133::-;2372:5;2410:6;2397:20;2388:29;;2426:30;2450:5;2426:30;:::i;:::-;2329:133;;;;:::o;2468:137::-;2522:5;2553:6;2547:13;2538:22;;2569:30;2593:5;2569:30;:::i;:::-;2468:137;;;;:::o;2611:139::-;2657:5;2695:6;2682:20;2673:29;;2711:33;2738:5;2711:33;:::i;:::-;2611:139;;;;:::o;2756:137::-;2801:5;2839:6;2826:20;2817:29;;2855:32;2881:5;2855:32;:::i;:::-;2756:137;;;;:::o;2899:141::-;2955:5;2986:6;2980:13;2971:22;;3002:32;3028:5;3002:32;:::i;:::-;2899:141;;;;:::o;3059:338::-;3114:5;3163:3;3156:4;3148:6;3144:17;3140:27;3130:122;;3171:79;;:::i;:::-;3130:122;3288:6;3275:20;3313:78;3387:3;3379:6;3372:4;3364:6;3360:17;3313:78;:::i;:::-;3304:87;;3120:277;3059:338;;;;:::o;3417:340::-;3473:5;3522:3;3515:4;3507:6;3503:17;3499:27;3489:122;;3530:79;;:::i;:::-;3489:122;3647:6;3634:20;3672:79;3747:3;3739:6;3732:4;3724:6;3720:17;3672:79;:::i;:::-;3663:88;;3479:278;3417:340;;;;:::o;3763:139::-;3809:5;3847:6;3834:20;3825:29;;3863:33;3890:5;3863:33;:::i;:::-;3763:139;;;;:::o;3908:329::-;3967:6;4016:2;4004:9;3995:7;3991:23;3987:32;3984:119;;;4022:79;;:::i;:::-;3984:119;4142:1;4167:53;4212:7;4203:6;4192:9;4188:22;4167:53;:::i;:::-;4157:63;;4113:117;3908:329;;;;:::o;4243:345::-;4310:6;4359:2;4347:9;4338:7;4334:23;4330:32;4327:119;;;4365:79;;:::i;:::-;4327:119;4485:1;4510:61;4563:7;4554:6;4543:9;4539:22;4510:61;:::i;:::-;4500:71;;4456:125;4243:345;;;;:::o;4594:474::-;4662:6;4670;4719:2;4707:9;4698:7;4694:23;4690:32;4687:119;;;4725:79;;:::i;:::-;4687:119;4845:1;4870:53;4915:7;4906:6;4895:9;4891:22;4870:53;:::i;:::-;4860:63;;4816:117;4972:2;4998:53;5043:7;5034:6;5023:9;5019:22;4998:53;:::i;:::-;4988:63;;4943:118;4594:474;;;;;:::o;5074:619::-;5151:6;5159;5167;5216:2;5204:9;5195:7;5191:23;5187:32;5184:119;;;5222:79;;:::i;:::-;5184:119;5342:1;5367:53;5412:7;5403:6;5392:9;5388:22;5367:53;:::i;:::-;5357:63;;5313:117;5469:2;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5440:118;5597:2;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5568:118;5074:619;;;;;:::o;5699:943::-;5794:6;5802;5810;5818;5867:3;5855:9;5846:7;5842:23;5838:33;5835:120;;;5874:79;;:::i;:::-;5835:120;5994:1;6019:53;6064:7;6055:6;6044:9;6040:22;6019:53;:::i;:::-;6009:63;;5965:117;6121:2;6147:53;6192:7;6183:6;6172:9;6168:22;6147:53;:::i;:::-;6137:63;;6092:118;6249:2;6275:53;6320:7;6311:6;6300:9;6296:22;6275:53;:::i;:::-;6265:63;;6220:118;6405:2;6394:9;6390:18;6377:32;6436:18;6428:6;6425:30;6422:117;;;6458:79;;:::i;:::-;6422:117;6563:62;6617:7;6608:6;6597:9;6593:22;6563:62;:::i;:::-;6553:72;;6348:287;5699:943;;;;;;;:::o;6648:468::-;6713:6;6721;6770:2;6758:9;6749:7;6745:23;6741:32;6738:119;;;6776:79;;:::i;:::-;6738:119;6896:1;6921:53;6966:7;6957:6;6946:9;6942:22;6921:53;:::i;:::-;6911:63;;6867:117;7023:2;7049:50;7091:7;7082:6;7071:9;7067:22;7049:50;:::i;:::-;7039:60;;6994:115;6648:468;;;;;:::o;7122:474::-;7190:6;7198;7247:2;7235:9;7226:7;7222:23;7218:32;7215:119;;;7253:79;;:::i;:::-;7215:119;7373:1;7398:53;7443:7;7434:6;7423:9;7419:22;7398:53;:::i;:::-;7388:63;;7344:117;7500:2;7526:53;7571:7;7562:6;7551:9;7547:22;7526:53;:::i;:::-;7516:63;;7471:118;7122:474;;;;;:::o;7602:619::-;7679:6;7687;7695;7744:2;7732:9;7723:7;7719:23;7715:32;7712:119;;;7750:79;;:::i;:::-;7712:119;7870:1;7895:53;7940:7;7931:6;7920:9;7916:22;7895:53;:::i;:::-;7885:63;;7841:117;7997:2;8023:53;8068:7;8059:6;8048:9;8044:22;8023:53;:::i;:::-;8013:63;;7968:118;8125:2;8151:53;8196:7;8187:6;8176:9;8172:22;8151:53;:::i;:::-;8141:63;;8096:118;7602:619;;;;;:::o;8227:559::-;8313:6;8321;8370:2;8358:9;8349:7;8345:23;8341:32;8338:119;;;8376:79;;:::i;:::-;8338:119;8524:1;8513:9;8509:17;8496:31;8554:18;8546:6;8543:30;8540:117;;;8576:79;;:::i;:::-;8540:117;8689:80;8761:7;8752:6;8741:9;8737:22;8689:80;:::i;:::-;8671:98;;;;8467:312;8227:559;;;;;:::o;8792:323::-;8848:6;8897:2;8885:9;8876:7;8872:23;8868:32;8865:119;;;8903:79;;:::i;:::-;8865:119;9023:1;9048:50;9090:7;9081:6;9070:9;9066:22;9048:50;:::i;:::-;9038:60;;8994:114;8792:323;;;;:::o;9121:345::-;9188:6;9237:2;9225:9;9216:7;9212:23;9208:32;9205:119;;;9243:79;;:::i;:::-;9205:119;9363:1;9388:61;9441:7;9432:6;9421:9;9417:22;9388:61;:::i;:::-;9378:71;;9334:125;9121:345;;;;:::o;9472:329::-;9531:6;9580:2;9568:9;9559:7;9555:23;9551:32;9548:119;;;9586:79;;:::i;:::-;9548:119;9706:1;9731:53;9776:7;9767:6;9756:9;9752:22;9731:53;:::i;:::-;9721:63;;9677:117;9472:329;;;;:::o;9807:327::-;9865:6;9914:2;9902:9;9893:7;9889:23;9885:32;9882:119;;;9920:79;;:::i;:::-;9882:119;10040:1;10065:52;10109:7;10100:6;10089:9;10085:22;10065:52;:::i;:::-;10055:62;;10011:116;9807:327;;;;:::o;10140:349::-;10209:6;10258:2;10246:9;10237:7;10233:23;10229:32;10226:119;;;10264:79;;:::i;:::-;10226:119;10384:1;10409:63;10464:7;10455:6;10444:9;10440:22;10409:63;:::i;:::-;10399:73;;10355:127;10140:349;;;;:::o;10495:509::-;10564:6;10613:2;10601:9;10592:7;10588:23;10584:32;10581:119;;;10619:79;;:::i;:::-;10581:119;10767:1;10756:9;10752:17;10739:31;10797:18;10789:6;10786:30;10783:117;;;10819:79;;:::i;:::-;10783:117;10924:63;10979:7;10970:6;10959:9;10955:22;10924:63;:::i;:::-;10914:73;;10710:287;10495:509;;;;:::o;11010:329::-;11069:6;11118:2;11106:9;11097:7;11093:23;11089:32;11086:119;;;11124:79;;:::i;:::-;11086:119;11244:1;11269:53;11314:7;11305:6;11294:9;11290:22;11269:53;:::i;:::-;11259:63;;11215:117;11010:329;;;;:::o;11345:704::-;11440:6;11448;11456;11505:2;11493:9;11484:7;11480:23;11476:32;11473:119;;;11511:79;;:::i;:::-;11473:119;11631:1;11656:53;11701:7;11692:6;11681:9;11677:22;11656:53;:::i;:::-;11646:63;;11602:117;11786:2;11775:9;11771:18;11758:32;11817:18;11809:6;11806:30;11803:117;;;11839:79;;:::i;:::-;11803:117;11952:80;12024:7;12015:6;12004:9;12000:22;11952:80;:::i;:::-;11934:98;;;;11729:313;11345:704;;;;;:::o;12055:474::-;12123:6;12131;12180:2;12168:9;12159:7;12155:23;12151:32;12148:119;;;12186:79;;:::i;:::-;12148:119;12306:1;12331:53;12376:7;12367:6;12356:9;12352:22;12331:53;:::i;:::-;12321:63;;12277:117;12433:2;12459:53;12504:7;12495:6;12484:9;12480:22;12459:53;:::i;:::-;12449:63;;12404:118;12055:474;;;;;:::o;12535:303::-;12666:10;12687:108;12791:3;12783:6;12687:108;:::i;:::-;12827:4;12822:3;12818:14;12804:28;;12535:303;;;;:::o;12844:179::-;12913:10;12934:46;12976:3;12968:6;12934:46;:::i;:::-;13012:4;13007:3;13003:14;12989:28;;12844:179;;;;:::o;13029:142::-;13132:32;13158:5;13132:32;:::i;:::-;13127:3;13120:45;13029:142;;:::o;13177:108::-;13254:24;13272:5;13254:24;:::i;:::-;13249:3;13242:37;13177:108;;:::o;13291:118::-;13378:24;13396:5;13378:24;:::i;:::-;13373:3;13366:37;13291:118;;:::o;13415:157::-;13520:45;13540:24;13558:5;13540:24;:::i;:::-;13520:45;:::i;:::-;13515:3;13508:58;13415:157;;:::o;13654:980::-;13835:3;13864:85;13943:5;13864:85;:::i;:::-;13965:117;14075:6;14070:3;13965:117;:::i;:::-;13958:124;;14106:87;14187:5;14106:87;:::i;:::-;14216:7;14247:1;14232:377;14257:6;14254:1;14251:13;14232:377;;;14333:6;14327:13;14360:125;14481:3;14466:13;14360:125;:::i;:::-;14353:132;;14508:91;14592:6;14508:91;:::i;:::-;14498:101;;14292:317;14279:1;14276;14272:9;14267:14;;14232:377;;;14236:14;14625:3;14618:10;;13840:794;;;13654:980;;;;:::o;14670:732::-;14789:3;14818:54;14866:5;14818:54;:::i;:::-;14888:86;14967:6;14962:3;14888:86;:::i;:::-;14881:93;;14998:56;15048:5;14998:56;:::i;:::-;15077:7;15108:1;15093:284;15118:6;15115:1;15112:13;15093:284;;;15194:6;15188:13;15221:63;15280:3;15265:13;15221:63;:::i;:::-;15214:70;;15307:60;15360:6;15307:60;:::i;:::-;15297:70;;15153:224;15140:1;15137;15133:9;15128:14;;15093:284;;;15097:14;15393:3;15386:10;;14794:608;;;14670:732;;;;:::o;15408:99::-;15479:21;15494:5;15479:21;:::i;:::-;15474:3;15467:34;15408:99;;:::o;15513:109::-;15594:21;15609:5;15594:21;:::i;:::-;15589:3;15582:34;15513:109;;:::o;15628:118::-;15715:24;15733:5;15715:24;:::i;:::-;15710:3;15703:37;15628:118;;:::o;15752:360::-;15838:3;15866:38;15898:5;15866:38;:::i;:::-;15920:70;15983:6;15978:3;15920:70;:::i;:::-;15913:77;;15999:52;16044:6;16039:3;16032:4;16025:5;16021:16;15999:52;:::i;:::-;16076:29;16098:6;16076:29;:::i;:::-;16071:3;16067:39;16060:46;;15842:270;15752:360;;;;:::o;16118:364::-;16206:3;16234:39;16267:5;16234:39;:::i;:::-;16289:71;16353:6;16348:3;16289:71;:::i;:::-;16282:78;;16369:52;16414:6;16409:3;16402:4;16395:5;16391:16;16369:52;:::i;:::-;16446:29;16468:6;16446:29;:::i;:::-;16441:3;16437:39;16430:46;;16210:272;16118:364;;;;:::o;16488:377::-;16594:3;16622:39;16655:5;16622:39;:::i;:::-;16677:89;16759:6;16754:3;16677:89;:::i;:::-;16670:96;;16775:52;16820:6;16815:3;16808:4;16801:5;16797:16;16775:52;:::i;:::-;16852:6;16847:3;16843:16;16836:23;;16598:267;16488:377;;;;:::o;16895:845::-;16998:3;17035:5;17029:12;17064:36;17090:9;17064:36;:::i;:::-;17116:89;17198:6;17193:3;17116:89;:::i;:::-;17109:96;;17236:1;17225:9;17221:17;17252:1;17247:137;;;;17398:1;17393:341;;;;17214:520;;17247:137;17331:4;17327:9;17316;17312:25;17307:3;17300:38;17367:6;17362:3;17358:16;17351:23;;17247:137;;17393:341;17460:38;17492:5;17460:38;:::i;:::-;17520:1;17534:154;17548:6;17545:1;17542:13;17534:154;;;17622:7;17616:14;17612:1;17607:3;17603:11;17596:35;17672:1;17663:7;17659:15;17648:26;;17570:4;17567:1;17563:12;17558:17;;17534:154;;;17717:6;17712:3;17708:16;17701:23;;17400:334;;17214:520;;17002:738;;16895:845;;;;:::o;17746:366::-;17888:3;17909:67;17973:2;17968:3;17909:67;:::i;:::-;17902:74;;17985:93;18074:3;17985:93;:::i;:::-;18103:2;18098:3;18094:12;18087:19;;17746:366;;;:::o;18118:::-;18260:3;18281:67;18345:2;18340:3;18281:67;:::i;:::-;18274:74;;18357:93;18446:3;18357:93;:::i;:::-;18475:2;18470:3;18466:12;18459:19;;18118:366;;;:::o;18490:::-;18632:3;18653:67;18717:2;18712:3;18653:67;:::i;:::-;18646:74;;18729:93;18818:3;18729:93;:::i;:::-;18847:2;18842:3;18838:12;18831:19;;18490:366;;;:::o;18862:::-;19004:3;19025:67;19089:2;19084:3;19025:67;:::i;:::-;19018:74;;19101:93;19190:3;19101:93;:::i;:::-;19219:2;19214:3;19210:12;19203:19;;18862:366;;;:::o;19234:::-;19376:3;19397:67;19461:2;19456:3;19397:67;:::i;:::-;19390:74;;19473:93;19562:3;19473:93;:::i;:::-;19591:2;19586:3;19582:12;19575:19;;19234:366;;;:::o;19606:::-;19748:3;19769:67;19833:2;19828:3;19769:67;:::i;:::-;19762:74;;19845:93;19934:3;19845:93;:::i;:::-;19963:2;19958:3;19954:12;19947:19;;19606:366;;;:::o;19978:::-;20120:3;20141:67;20205:2;20200:3;20141:67;:::i;:::-;20134:74;;20217:93;20306:3;20217:93;:::i;:::-;20335:2;20330:3;20326:12;20319:19;;19978:366;;;:::o;20350:::-;20492:3;20513:67;20577:2;20572:3;20513:67;:::i;:::-;20506:74;;20589:93;20678:3;20589:93;:::i;:::-;20707:2;20702:3;20698:12;20691:19;;20350:366;;;:::o;20722:::-;20864:3;20885:67;20949:2;20944:3;20885:67;:::i;:::-;20878:74;;20961:93;21050:3;20961:93;:::i;:::-;21079:2;21074:3;21070:12;21063:19;;20722:366;;;:::o;21094:::-;21236:3;21257:67;21321:2;21316:3;21257:67;:::i;:::-;21250:74;;21333:93;21422:3;21333:93;:::i;:::-;21451:2;21446:3;21442:12;21435:19;;21094:366;;;:::o;21466:::-;21608:3;21629:67;21693:2;21688:3;21629:67;:::i;:::-;21622:74;;21705:93;21794:3;21705:93;:::i;:::-;21823:2;21818:3;21814:12;21807:19;;21466:366;;;:::o;21838:::-;21980:3;22001:67;22065:2;22060:3;22001:67;:::i;:::-;21994:74;;22077:93;22166:3;22077:93;:::i;:::-;22195:2;22190:3;22186:12;22179:19;;21838:366;;;:::o;22210:398::-;22369:3;22390:83;22471:1;22466:3;22390:83;:::i;:::-;22383:90;;22482:93;22571:3;22482:93;:::i;:::-;22600:1;22595:3;22591:11;22584:18;;22210:398;;;:::o;22686:864::-;22835:4;22830:3;22826:14;22922:4;22915:5;22911:16;22905:23;22941:63;22998:4;22993:3;22989:14;22975:12;22941:63;:::i;:::-;22850:164;23106:4;23099:5;23095:16;23089:23;23125:61;23180:4;23175:3;23171:14;23157:12;23125:61;:::i;:::-;23024:172;23280:4;23273:5;23269:16;23263:23;23299:57;23350:4;23345:3;23341:14;23327:12;23299:57;:::i;:::-;23206:160;23453:4;23446:5;23442:16;23436:23;23472:61;23527:4;23522:3;23518:14;23504:12;23472:61;:::i;:::-;23376:167;22804:746;22686:864;;:::o;23628:874::-;23787:4;23782:3;23778:14;23874:4;23867:5;23863:16;23857:23;23893:63;23950:4;23945:3;23941:14;23927:12;23893:63;:::i;:::-;23802:164;24058:4;24051:5;24047:16;24041:23;24077:61;24132:4;24127:3;24123:14;24109:12;24077:61;:::i;:::-;23976:172;24232:4;24225:5;24221:16;24215:23;24251:57;24302:4;24297:3;24293:14;24279:12;24251:57;:::i;:::-;24158:160;24405:4;24398:5;24394:16;24388:23;24424:61;24479:4;24474:3;24470:14;24456:12;24424:61;:::i;:::-;24328:167;23756:746;23628:874;;:::o;24508:105::-;24583:23;24600:5;24583:23;:::i;:::-;24578:3;24571:36;24508:105;;:::o;24619:108::-;24696:24;24714:5;24696:24;:::i;:::-;24691:3;24684:37;24619:108;;:::o;24733:118::-;24820:24;24838:5;24820:24;:::i;:::-;24815:3;24808:37;24733:118;;:::o;24857:105::-;24932:23;24949:5;24932:23;:::i;:::-;24927:3;24920:36;24857:105;;:::o;24968:256::-;25080:3;25095:75;25166:3;25157:6;25095:75;:::i;:::-;25195:2;25190:3;25186:12;25179:19;;25215:3;25208:10;;24968:256;;;;:::o;25230:589::-;25455:3;25477:95;25568:3;25559:6;25477:95;:::i;:::-;25470:102;;25589:95;25680:3;25671:6;25589:95;:::i;:::-;25582:102;;25701:92;25789:3;25780:6;25701:92;:::i;:::-;25694:99;;25810:3;25803:10;;25230:589;;;;;;:::o;25825:379::-;26009:3;26031:147;26174:3;26031:147;:::i;:::-;26024:154;;26195:3;26188:10;;25825:379;;;:::o;26210:222::-;26303:4;26341:2;26330:9;26326:18;26318:26;;26354:71;26422:1;26411:9;26407:17;26398:6;26354:71;:::i;:::-;26210:222;;;;:::o;26438:254::-;26547:4;26585:2;26574:9;26570:18;26562:26;;26598:87;26682:1;26671:9;26667:17;26658:6;26598:87;:::i;:::-;26438:254;;;;:::o;26698:640::-;26893:4;26931:3;26920:9;26916:19;26908:27;;26945:71;27013:1;27002:9;26998:17;26989:6;26945:71;:::i;:::-;27026:72;27094:2;27083:9;27079:18;27070:6;27026:72;:::i;:::-;27108;27176:2;27165:9;27161:18;27152:6;27108:72;:::i;:::-;27227:9;27221:4;27217:20;27212:2;27201:9;27197:18;27190:48;27255:76;27326:4;27317:6;27255:76;:::i;:::-;27247:84;;26698:640;;;;;;;:::o;27344:332::-;27465:4;27503:2;27492:9;27488:18;27480:26;;27516:71;27584:1;27573:9;27569:17;27560:6;27516:71;:::i;:::-;27597:72;27665:2;27654:9;27650:18;27641:6;27597:72;:::i;:::-;27344:332;;;;;:::o;27682:497::-;27887:4;27925:2;27914:9;27910:18;27902:26;;27974:9;27968:4;27964:20;27960:1;27949:9;27945:17;27938:47;28002:170;28167:4;28158:6;28002:170;:::i;:::-;27994:178;;27682:497;;;;:::o;28185:373::-;28328:4;28366:2;28355:9;28351:18;28343:26;;28415:9;28409:4;28405:20;28401:1;28390:9;28386:17;28379:47;28443:108;28546:4;28537:6;28443:108;:::i;:::-;28435:116;;28185:373;;;;:::o;28564:210::-;28651:4;28689:2;28678:9;28674:18;28666:26;;28702:65;28764:1;28753:9;28749:17;28740:6;28702:65;:::i;:::-;28564:210;;;;:::o;28780:222::-;28873:4;28911:2;28900:9;28896:18;28888:26;;28924:71;28992:1;28981:9;28977:17;28968:6;28924:71;:::i;:::-;28780:222;;;;:::o;29008:313::-;29121:4;29159:2;29148:9;29144:18;29136:26;;29208:9;29202:4;29198:20;29194:1;29183:9;29179:17;29172:47;29236:78;29309:4;29300:6;29236:78;:::i;:::-;29228:86;;29008:313;;;;:::o;29327:419::-;29493:4;29531:2;29520:9;29516:18;29508:26;;29580:9;29574:4;29570:20;29566:1;29555:9;29551:17;29544:47;29608:131;29734:4;29608:131;:::i;:::-;29600:139;;29327:419;;;:::o;29752:::-;29918:4;29956:2;29945:9;29941:18;29933:26;;30005:9;29999:4;29995:20;29991:1;29980:9;29976:17;29969:47;30033:131;30159:4;30033:131;:::i;:::-;30025:139;;29752:419;;;:::o;30177:::-;30343:4;30381:2;30370:9;30366:18;30358:26;;30430:9;30424:4;30420:20;30416:1;30405:9;30401:17;30394:47;30458:131;30584:4;30458:131;:::i;:::-;30450:139;;30177:419;;;:::o;30602:::-;30768:4;30806:2;30795:9;30791:18;30783:26;;30855:9;30849:4;30845:20;30841:1;30830:9;30826:17;30819:47;30883:131;31009:4;30883:131;:::i;:::-;30875:139;;30602:419;;;:::o;31027:::-;31193:4;31231:2;31220:9;31216:18;31208:26;;31280:9;31274:4;31270:20;31266:1;31255:9;31251:17;31244:47;31308:131;31434:4;31308:131;:::i;:::-;31300:139;;31027:419;;;:::o;31452:::-;31618:4;31656:2;31645:9;31641:18;31633:26;;31705:9;31699:4;31695:20;31691:1;31680:9;31676:17;31669:47;31733:131;31859:4;31733:131;:::i;:::-;31725:139;;31452:419;;;:::o;31877:::-;32043:4;32081:2;32070:9;32066:18;32058:26;;32130:9;32124:4;32120:20;32116:1;32105:9;32101:17;32094:47;32158:131;32284:4;32158:131;:::i;:::-;32150:139;;31877:419;;;:::o;32302:::-;32468:4;32506:2;32495:9;32491:18;32483:26;;32555:9;32549:4;32545:20;32541:1;32530:9;32526:17;32519:47;32583:131;32709:4;32583:131;:::i;:::-;32575:139;;32302:419;;;:::o;32727:::-;32893:4;32931:2;32920:9;32916:18;32908:26;;32980:9;32974:4;32970:20;32966:1;32955:9;32951:17;32944:47;33008:131;33134:4;33008:131;:::i;:::-;33000:139;;32727:419;;;:::o;33152:::-;33318:4;33356:2;33345:9;33341:18;33333:26;;33405:9;33399:4;33395:20;33391:1;33380:9;33376:17;33369:47;33433:131;33559:4;33433:131;:::i;:::-;33425:139;;33152:419;;;:::o;33577:::-;33743:4;33781:2;33770:9;33766:18;33758:26;;33830:9;33824:4;33820:20;33816:1;33805:9;33801:17;33794:47;33858:131;33984:4;33858:131;:::i;:::-;33850:139;;33577:419;;;:::o;34002:::-;34168:4;34206:2;34195:9;34191:18;34183:26;;34255:9;34249:4;34245:20;34241:1;34230:9;34226:17;34219:47;34283:131;34409:4;34283:131;:::i;:::-;34275:139;;34002:419;;;:::o;34427:347::-;34582:4;34620:3;34609:9;34605:19;34597:27;;34634:133;34764:1;34753:9;34749:17;34740:6;34634:133;:::i;:::-;34427:347;;;;:::o;34780:222::-;34873:4;34911:2;34900:9;34896:18;34888:26;;34924:71;34992:1;34981:9;34977:17;34968:6;34924:71;:::i;:::-;34780:222;;;;:::o;35008:129::-;35042:6;35069:20;;:::i;:::-;35059:30;;35098:33;35126:4;35118:6;35098:33;:::i;:::-;35008:129;;;:::o;35143:75::-;35176:6;35209:2;35203:9;35193:19;;35143:75;:::o;35224:307::-;35285:4;35375:18;35367:6;35364:30;35361:56;;;35397:18;;:::i;:::-;35361:56;35435:29;35457:6;35435:29;:::i;:::-;35427:37;;35519:4;35513;35509:15;35501:23;;35224:307;;;:::o;35537:308::-;35599:4;35689:18;35681:6;35678:30;35675:56;;;35711:18;;:::i;:::-;35675:56;35749:29;35771:6;35749:29;:::i;:::-;35741:37;;35833:4;35827;35823:15;35815:23;;35537:308;;;:::o;35851:163::-;35949:4;35972:3;35964:11;;36002:4;35997:3;35993:14;35985:22;;35851:163;;;:::o;36020:132::-;36087:4;36110:3;36102:11;;36140:4;36135:3;36131:14;36123:22;;36020:132;;;:::o;36158:141::-;36207:4;36230:3;36222:11;;36253:3;36250:1;36243:14;36287:4;36284:1;36274:18;36266:26;;36158:141;;;:::o;36305:145::-;36403:6;36437:5;36431:12;36421:22;;36305:145;;;:::o;36456:114::-;36523:6;36557:5;36551:12;36541:22;;36456:114;;;:::o;36576:98::-;36627:6;36661:5;36655:12;36645:22;;36576:98;;;:::o;36680:99::-;36732:6;36766:5;36760:12;36750:22;;36680:99;;;:::o;36785:144::-;36886:4;36918;36913:3;36909:14;36901:22;;36785:144;;;:::o;36935:113::-;37005:4;37037;37032:3;37028:14;37020:22;;36935:113;;;:::o;37054:215::-;37184:11;37218:6;37213:3;37206:19;37258:4;37253:3;37249:14;37234:29;;37054:215;;;;:::o;37275:184::-;37374:11;37408:6;37403:3;37396:19;37448:4;37443:3;37439:14;37424:29;;37275:184;;;;:::o;37465:168::-;37548:11;37582:6;37577:3;37570:19;37622:4;37617:3;37613:14;37598:29;;37465:168;;;;:::o;37639:147::-;37740:11;37777:3;37762:18;;37639:147;;;;:::o;37792:169::-;37876:11;37910:6;37905:3;37898:19;37950:4;37945:3;37941:14;37926:29;;37792:169;;;;:::o;37967:148::-;38069:11;38106:3;38091:18;;37967:148;;;;:::o;38121:305::-;38161:3;38180:20;38198:1;38180:20;:::i;:::-;38175:25;;38214:20;38232:1;38214:20;:::i;:::-;38209:25;;38368:1;38300:66;38296:74;38293:1;38290:81;38287:107;;;38374:18;;:::i;:::-;38287:107;38418:1;38415;38411:9;38404:16;;38121:305;;;;:::o;38432:348::-;38472:7;38495:20;38513:1;38495:20;:::i;:::-;38490:25;;38529:20;38547:1;38529:20;:::i;:::-;38524:25;;38717:1;38649:66;38645:74;38642:1;38639:81;38634:1;38627:9;38620:17;38616:105;38613:131;;;38724:18;;:::i;:::-;38613:131;38772:1;38769;38765:9;38754:20;;38432:348;;;;:::o;38786:96::-;38823:7;38852:24;38870:5;38852:24;:::i;:::-;38841:35;;38786:96;;;:::o;38888:104::-;38933:7;38962:24;38980:5;38962:24;:::i;:::-;38951:35;;38888:104;;;:::o;38998:90::-;39032:7;39075:5;39068:13;39061:21;39050:32;;38998:90;;;:::o;39094:77::-;39131:7;39160:5;39149:16;;39094:77;;;:::o;39177:149::-;39213:7;39253:66;39246:5;39242:78;39231:89;;39177:149;;;:::o;39332:126::-;39369:7;39409:42;39402:5;39398:54;39387:65;;39332:126;;;:::o;39464:91::-;39500:7;39540:8;39533:5;39529:20;39518:31;;39464:91;;;:::o;39561:77::-;39598:7;39627:5;39616:16;;39561:77;;;:::o;39644:101::-;39680:7;39720:18;39713:5;39709:30;39698:41;;39644:101;;;:::o;39751:154::-;39835:6;39830:3;39825;39812:30;39897:1;39888:6;39883:3;39879:16;39872:27;39751:154;;;:::o;39911:307::-;39979:1;39989:113;40003:6;40000:1;39997:13;39989:113;;;40088:1;40083:3;40079:11;40073:18;40069:1;40064:3;40060:11;40053:39;40025:2;40022:1;40018:10;40013:15;;39989:113;;;40120:6;40117:1;40114:13;40111:101;;;40200:1;40191:6;40186:3;40182:16;40175:27;40111:101;39960:258;39911:307;;;:::o;40224:320::-;40268:6;40305:1;40299:4;40295:12;40285:22;;40352:1;40346:4;40342:12;40373:18;40363:81;;40429:4;40421:6;40417:17;40407:27;;40363:81;40491:2;40483:6;40480:14;40460:18;40457:38;40454:84;;;40510:18;;:::i;:::-;40454:84;40275:269;40224:320;;;:::o;40550:281::-;40633:27;40655:4;40633:27;:::i;:::-;40625:6;40621:40;40763:6;40751:10;40748:22;40727:18;40715:10;40712:34;40709:62;40706:88;;;40774:18;;:::i;:::-;40706:88;40814:10;40810:2;40803:22;40593:238;40550:281;;:::o;40837:233::-;40876:3;40899:24;40917:5;40899:24;:::i;:::-;40890:33;;40945:66;40938:5;40935:77;40932:103;;;41015:18;;:::i;:::-;40932:103;41062:1;41055:5;41051:13;41044:20;;40837:233;;;:::o;41076:100::-;41115:7;41144:26;41164:5;41144:26;:::i;:::-;41133:37;;41076:100;;;:::o;41182:94::-;41221:7;41250:20;41264:5;41250:20;:::i;:::-;41239:31;;41182:94;;;:::o;41282:180::-;41330:77;41327:1;41320:88;41427:4;41424:1;41417:15;41451:4;41448:1;41441:15;41468:180;41516:77;41513:1;41506:88;41613:4;41610:1;41603:15;41637:4;41634:1;41627:15;41654:180;41702:77;41699:1;41692:88;41799:4;41796:1;41789:15;41823:4;41820:1;41813:15;41840:180;41888:77;41885:1;41878:88;41985:4;41982:1;41975:15;42009:4;42006:1;41999:15;42026:117;42135:1;42132;42125:12;42149:117;42258:1;42255;42248:12;42272:117;42381:1;42378;42371:12;42395:117;42504:1;42501;42494:12;42518:117;42627:1;42624;42617:12;42641:117;42750:1;42747;42740:12;42764:102;42805:6;42856:2;42852:7;42847:2;42840:5;42836:14;42832:28;42822:38;;42764:102;;;:::o;42872:94::-;42905:8;42953:5;42949:2;42945:14;42924:35;;42872:94;;;:::o;42972:171::-;43112:23;43108:1;43100:6;43096:14;43089:47;42972:171;:::o;43149:221::-;43289:34;43285:1;43277:6;43273:14;43266:58;43358:4;43353:2;43345:6;43341:15;43334:29;43149:221;:::o;43376:173::-;43516:25;43512:1;43504:6;43500:14;43493:49;43376:173;:::o;43555:225::-;43695:34;43691:1;43683:6;43679:14;43672:58;43764:8;43759:2;43751:6;43747:15;43740:33;43555:225;:::o;43786:222::-;43926:34;43922:1;43914:6;43910:14;43903:58;43995:5;43990:2;43982:6;43978:15;43971:30;43786:222;:::o;44014:170::-;44154:22;44150:1;44142:6;44138:14;44131:46;44014:170;:::o;44190:220::-;44330:34;44326:1;44318:6;44314:14;44307:58;44399:3;44394:2;44386:6;44382:15;44375:28;44190:220;:::o;44416:169::-;44556:21;44552:1;44544:6;44540:14;44533:45;44416:169;:::o;44591:168::-;44731:20;44727:1;44719:6;44715:14;44708:44;44591:168;:::o;44765:182::-;44905:34;44901:1;44893:6;44889:14;44882:58;44765:182;:::o;44953:170::-;45093:22;45089:1;45081:6;45077:14;45070:46;44953:170;:::o;45129:178::-;45269:30;45265:1;45257:6;45253:14;45246:54;45129:178;:::o;45313:114::-;;:::o;45433:122::-;45506:24;45524:5;45506:24;:::i;:::-;45499:5;45496:35;45486:63;;45545:1;45542;45535:12;45486:63;45433:122;:::o;45561:138::-;45642:32;45668:5;45642:32;:::i;:::-;45635:5;45632:43;45622:71;;45689:1;45686;45679:12;45622:71;45561:138;:::o;45705:116::-;45775:21;45790:5;45775:21;:::i;:::-;45768:5;45765:32;45755:60;;45811:1;45808;45801:12;45755:60;45705:116;:::o;45827:122::-;45900:24;45918:5;45900:24;:::i;:::-;45893:5;45890:35;45880:63;;45939:1;45936;45929:12;45880:63;45827:122;:::o;45955:120::-;46027:23;46044:5;46027:23;:::i;:::-;46020:5;46017:34;46007:62;;46065:1;46062;46055:12;46007:62;45955:120;:::o;46081:122::-;46154:24;46172:5;46154:24;:::i;:::-;46147:5;46144:35;46134:63;;46193:1;46190;46183:12;46134:63;46081:122;:::o
Swarm Source
ipfs://377124ccedb92a901ace064703d372f060783eb466244b8d8d9038c144a254b5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.