Overview
TokenID
2400
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:
_10KWorldCup
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* $$\ $$$$$$\ $$\ $$\ $$\ $$\ $$\ $$\ $$$$ | $$$ __$$\ $$ | $$ | $$ | $\ $$ | $$ | $$ | \_$$ | $$$$\ $$ |$$ |$$ / $$ |$$$\ $$ | $$$$$$\ $$$$$$\ $$ | $$$$$$$ | $$$$$$$\ $$\ $$\ $$$$$$\ $$ | $$\$$\$$ |$$$$$ / $$ $$ $$\$$ |$$ __$$\ $$ __$$\ $$ |$$ __$$ | $$ _____|$$ | $$ |$$ __$$\ $$ | $$ \$$$$ |$$ $$< $$$$ _$$$$ |$$ / $$ |$$ | \__|$$ |$$ / $$ | $$ / $$ | $$ |$$ / $$ | $$ | $$ |\$$$ |$$ |\$$\ $$$ / \$$$ |$$ | $$ |$$ | $$ |$$ | $$ | $$ | $$ | $$ |$$ | $$ | $$$$$$\\$$$$$$ /$$ | \$$\ $$ / \$$ |\$$$$$$ |$$ | $$ |\$$$$$$$ | \$$$$$$$\ \$$$$$$ |$$$$$$$ | \______|\______/ \__| \__| \__/ \__| \______/ \__| \__| \_______| \_______| \______/ $$ ____/ $$ | $$ | \__| */ pragma solidity ^0.8.7; import "./IERC721D.sol"; import "./StakeContract.sol"; import "./CryptoPunksMarket.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract _10KWorldCup is IERC721D, ERC721A, Ownable, ReentrancyGuard { using ECDSA for bytes32; uint256 public constant MAX_SUPPLY = 10000; uint256 public constant WL_PRICE = 0.035 ether; uint256 public constant PUB_PRICE = 0.05 ether; uint256 public BuilderWL_LIMIT = 8; uint256 public SuperWL_LIMIT = 4; uint256 public WL_LIMIT = 2; uint256 public BCN_LIMIT = 2; uint256 public PUB_SALE_LIMIT = 2; uint256 public topEightRightTeams; uint256 public championTokenIdAmount; string public baseTokenURI; bool claimStatus; uint256 public pubSaleTime = 1667829600; address public stakeAddress; address public mintSignAddress = 0x66E1A1c2307c5a126ef2837969ae020Ede7d6548; address public ClaimSignAddress = 0x93A0f55968a2050b4bF5B900b5Aa566F304194e2; mapping(address => uint256) public minteds; mapping(uint256 => bool) bonusCliamed; mapping(uint256 => mapping(uint8 => bool)) public bonusInfo; mapping(address => mapping(uint256 => uint256)) public bcnTokenIdUsedLimit; mapping(address => bool) public disapprovedMarketplaces; enum WlType { BuilderWl, SuperWl, LuckyWl, CommonWl } enum ClaimType { ChampionBonus, TopEightBonus, ConsolationPrize } Bcn supportedBcns; struct Bcn { address[] _bcnAddress; mapping(address => uint256) _index; } Bonus public bonus; struct Bonus { uint256 ownerBonus; uint256 championBonus; uint256 topEightBonus; uint256 consolationPrize; } RemainBonus public remainBonus; struct RemainBonus { uint256 ownerBonus; uint256 championBonus; uint256 topEightBonus; uint256 consolationPrize; } event RandomTeam(string indexed country, uint256[]); event MintToBcn( address indexed to, uint256 indexed amount, address indexed bcnAddress, uint256 ); constructor(string memory _baseTokenUri) ERC721A("10K World Cup", "10K World Cup") { baseTokenURI = _baseTokenUri; } function mint( address to, uint256 amount, bytes calldata _signature ) external payable { require(block.timestamp >= pubSaleTime, "Not on public sale"); require(totalSupply() + amount <= MAX_SUPPLY, "Sold out!"); require(minteds[to] + amount <= PUB_SALE_LIMIT, "Limit exceeded"); require(msg.value >= amount * PUB_PRICE, "Not paying enough fees"); require( keccak256(abi.encodePacked(to, amount)) .toEthSignedMessageHash() .recover(_signature) == mintSignAddress, "Signature fail" ); unchecked { minteds[to] += amount; } _mint(to, amount); } function wlMint( address _owner, address to, uint256 amount, WlType _WlType, bytes calldata _singature ) external payable { require(totalSupply() + amount <= MAX_SUPPLY, "Sold out!"); require(msg.value >= amount * WL_PRICE, "Not paying enough fees"); require( keccak256(abi.encodePacked(_owner, amount, _WlType)) .toEthSignedMessageHash() .recover(_singature) == mintSignAddress, "You're not on the whitelist" ); if (_WlType == WlType.BuilderWl) { require( minteds[_owner] + amount <= BuilderWL_LIMIT, "Limit exceeded" ); } else if (_WlType == WlType.SuperWl) { require( minteds[_owner] + amount <= SuperWL_LIMIT, "Limit exceeded" ); } else if (_WlType == WlType.LuckyWl) { require(minteds[_owner] + amount <= WL_LIMIT, "Limit exceeded"); } else { require(minteds[_owner] + amount <= WL_LIMIT, "Limit exceeded"); } unchecked { minteds[_owner] += amount; } _mint(to, amount); } function mintToBcn( uint256 amount, address bcn, uint256 bcnTokenId, bool isCryptoPunks ) external payable { address to; if (isCryptoPunks) { to = CryptoPunksMarket(bcn).punkIndexToAddress(bcnTokenId); } else { to = IERC721A(bcn).ownerOf(bcnTokenId); } require(to != address(0), "BcnTokenId not exists!"); uint256 bcnTokenLimit = bcnTokenIdUsedLimit[bcn][bcnTokenId]; uint256 wlMintedAmount = minteds[to]; require( bcnTokenLimit + amount <= BCN_LIMIT, "BcnTokenId is used limit" ); require(this.containsBcn(bcn), "Not support this bcn"); require(wlMintedAmount + amount <= BCN_LIMIT, "Limit exceeded"); require(totalSupply() + amount <= MAX_SUPPLY, "Sold out!"); require(msg.value >= amount * WL_PRICE, "Not paying enough fees"); unchecked { minteds[to] = wlMintedAmount + amount; bcnTokenIdUsedLimit[bcn][bcnTokenId] = bcnTokenLimit + amount; } _mint(to, amount); emit MintToBcn(to, amount, bcn, bcnTokenId); } function addBcn(address[] calldata bcns) external onlyOwner { for (uint256 i = 0; i < bcns.length; i++) { if (!this.containsBcn(bcns[i])) { supportedBcns._bcnAddress.push(bcns[i]); supportedBcns._index[bcns[i]] = supportedBcns ._bcnAddress .length; } } } function removeBcn(address[] calldata bcns) external onlyOwner { for (uint256 i = 0; i < bcns.length; i++) { uint256 addressIndex = supportedBcns._index[bcns[i]]; if (addressIndex != 0) { uint256 toDeleteIndex = addressIndex - 1; uint256 lastIndex = supportedBcns._bcnAddress.length - 1; if (lastIndex != toDeleteIndex) { address lastAddress = supportedBcns._bcnAddress[lastIndex]; supportedBcns._bcnAddress[toDeleteIndex] = lastAddress; supportedBcns._index[lastAddress] = addressIndex; } supportedBcns._bcnAddress.pop(); delete supportedBcns._index[bcns[i]]; } } } function containsBcn(address bcn) external view returns (bool) { return supportedBcns._index[bcn] != 0; } function allSupportedBcn() external view returns (address[] memory) { return supportedBcns._bcnAddress; } function lengthBcn() external view returns (uint256) { return supportedBcns._bcnAddress.length; } function getRandomOfTeam( string calldata country, uint256 amount, uint256[] memory tokenIds ) external onlyOwner returns (uint256[] memory randomTokenId) { uint256[] memory randomNumbers = new uint256[](amount); uint256[] memory randomTokenIds = new uint256[](amount); uint256 range = tokenIds.length; for (uint256 i = 0; i < amount; i++) { randomNumbers[i] = uint256( keccak256( abi.encodePacked( i, tokenIds.length, block.timestamp, block.difficulty, block.number ) ) ) % range; randomTokenIds[i] = tokenIds[randomNumbers[i]]; uint256 lastTokenId = tokenIds[tokenIds.length - i - 1]; tokenIds[tokenIds.length - i - 1] = tokenIds[randomNumbers[i]]; tokenIds[randomNumbers[i]] = lastTokenId; range--; } emit RandomTeam(country, randomTokenIds); return randomTokenIds; } function intoChampionBonus() external onlyOwner { remainBonus.championBonus = remainBonus.championBonus + remainBonus.topEightBonus; remainBonus.topEightBonus = 0; bonus.championBonus = remainBonus.championBonus; bonus.topEightBonus = remainBonus.topEightBonus; } function setDistribution() external virtual override onlyOwner { bonus = Bonus({ ownerBonus: (address(this).balance * 20) / 100, championBonus: (address(this).balance * 35) / 100, topEightBonus: (address(this).balance * 35) / 100, consolationPrize: (address(this).balance * 10) / 100 }); remainBonus = RemainBonus({ ownerBonus: (address(this).balance * 20) / 100, championBonus: (address(this).balance * 35) / 100, topEightBonus: (address(this).balance * 35) / 100, consolationPrize: (address(this).balance * 10) / 100 }); claimStatus = true; } receive() external payable {} function claimDistribution( uint256[] calldata tokenIds, uint8 enumType, bytes calldata _signature ) external virtual override nonReentrant { require(claimStatus, "Not time to claim"); bytes32 signedHash = 0xfa26db7ca85ead399216e7c6316bc50ed24393c3122b582735e7f3b0f91b93f0; for (uint256 i = 0; i < tokenIds.length; i++) { if (ownerOf(tokenIds[i]) != msg.sender) { require( StakeContract(stakeAddress).stakeOwnerOf(tokenIds[i]) == msg.sender, "You are not the owner" ); } require( !bonusInfo[tokenIds[i]][enumType], "You have already received the bonus" ); bonusInfo[tokenIds[i]][enumType] = true; bonusCliamed[tokenIds[i]] = true; signedHash = keccak256( abi.encodePacked(signedHash, msg.sender, tokenIds[i], enumType) ); } require( signedHash.toEthSignedMessageHash().recover(_signature) == ClaimSignAddress, "You can't get the consolation prize" ); if (enumType == uint8(ClaimType.ChampionBonus)) { uint256 bonusValue = bonus.championBonus / championTokenIdAmount; if (remainBonus.championBonus > 0) { remainBonus.championBonus = remainBonus.championBonus - (bonusValue * tokenIds.length); sendValue(payable(msg.sender), bonusValue * tokenIds.length); } else { revert("Claim end"); } } if (enumType == uint8(ClaimType.TopEightBonus)) { uint256 bonusValue = bonus.topEightBonus / topEightRightTeams / 8; if (remainBonus.topEightBonus > 0) { remainBonus.topEightBonus = remainBonus.topEightBonus - (bonusValue * tokenIds.length); sendValue(payable(msg.sender), bonusValue * tokenIds.length); } else { revert("Claim end"); } } if (enumType == uint8(ClaimType.ConsolationPrize)) { uint256 bonusValue = bonus.consolationPrize / 24 / 10; if (remainBonus.consolationPrize > 0) { remainBonus.consolationPrize = remainBonus.consolationPrize - (bonusValue * tokenIds.length); sendValue(payable(msg.sender), bonusValue * tokenIds.length); } else { revert("Claim end"); } } emit ClaimEvent(msg.sender, tokenIds, enumType); } function isSupportClaim(uint256 tokenId) external view virtual override returns (bool) { return bonusCliamed[tokenId] == false; } function isClaimedDistribution(uint256 tokenId) external view virtual override returns (bool) { return bonusCliamed[tokenId]; } function isBegainClaim() external view virtual override returns (bool) { return claimStatus; } function setTopEightTeams(uint256 _topEightRightTeams) external onlyOwner { topEightRightTeams = _topEightRightTeams; } function setChampionTokenAmount(uint256 _championTokenAmount) external onlyOwner { championTokenIdAmount = _championTokenAmount; } function setPubSaleTime(uint256 timestamp) external onlyOwner { pubSaleTime = timestamp; } function ownerMint(address to, uint256 amount) external onlyOwner { require(totalSupply() + amount <= MAX_SUPPLY, "Sold out!"); _mint(to, amount); } function setMintSignedAddress(address _mintSignAddress) external onlyOwner { mintSignAddress = _mintSignAddress; } function setStakeAddress(address _stakeAddress) external onlyOwner { stakeAddress = _stakeAddress; } function setClaimSignedAddress(address _claimSignAddress) external onlyOwner { ClaimSignAddress = _claimSignAddress; } function setBaseTokenURI(string calldata _uri) external onlyOwner { baseTokenURI = _uri; } function setDisapprovedMarketplace(address market, bool isDisapprove) external onlyOwner { disapprovedMarketplaces[market] = isDisapprove; } function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: remainBonus.ownerBonus}(""); remainBonus.ownerBonus = 0; require(success, "Transfer failed."); } function approve(address to, uint256 tokenId) public payable virtual override { require(!disapprovedMarketplaces[to], "The address is not approved"); super.approve(to, tokenId); } function setApprovalForAll(address operator, bool approved) public virtual override { require( !disapprovedMarketplaces[operator], "The address is not approved" ); super.setApprovalForAll(operator, approved); } function _baseURI() internal view override returns (string memory) { return baseTokenURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ""; } function _startTokenId() internal pure override returns (uint256) { return 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; contract CryptoPunksMarket { mapping(uint256 => address) public punkIndexToAddress; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; contract StakeContract { mapping(uint256 => address) public stakeOwnerOf; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; /** * New Distribution Scheme ERC721D */ interface IERC721D { /** * Cliamed Distribution Event; */ event ClaimEvent( address indexed to, uint256[] indexed tokenIds, uint8 indexed claimType ); /** * Set Distribution Scheme */ function setDistribution() external; /** *Uint256 [] tokenIds give the token id holder the allocated bonus *Uint8 enumType distinguishes different bonus distribution schemes *bytes calldata _ Signature verifies the legitimacy of the collection * emit event after claimed */ function claimDistribution( uint256[] calldata tokenIds, uint8 enumType, bytes calldata _signature ) external; /** * Check whether a token ID supports Claim * returns supported: is support claim */ function isSupportClaim(uint256 tokenId) external view returns (bool); /** * Check whether the token id has been claimed * returns cliamed : claimed status */ function isClaimedDistribution(uint256 tokenId) external view returns (bool); /** * Check whether begain claim */ function isBegainClaim() external view returns (bool); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":true,"internalType":"uint8","name":"claimType","type":"uint8"}],"name":"ClaimEvent","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":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"bcnAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"MintToBcn","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":"string","name":"country","type":"string"},{"indexed":false,"internalType":"uint256[]","name":"","type":"uint256[]"}],"name":"RandomTeam","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BCN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BuilderWL_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ClaimSignAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUB_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUB_SALE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SuperWL_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bcns","type":"address[]"}],"name":"addBcn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allSupportedBcn","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"bcnTokenIdUsedLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonus","outputs":[{"internalType":"uint256","name":"ownerBonus","type":"uint256"},{"internalType":"uint256","name":"championBonus","type":"uint256"},{"internalType":"uint256","name":"topEightBonus","type":"uint256"},{"internalType":"uint256","name":"consolationPrize","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"bonusInfo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"championTokenIdAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint8","name":"enumType","type":"uint8"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"claimDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bcn","type":"address"}],"name":"containsBcn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"disapprovedMarketplaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"country","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"getRandomOfTeam","outputs":[{"internalType":"uint256[]","name":"randomTokenId","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"intoChampionBonus","outputs":[],"stateMutability":"nonpayable","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":"isBegainClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isClaimedDistribution","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isSupportClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lengthBcn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintSignAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"bcn","type":"address"},{"internalType":"uint256","name":"bcnTokenId","type":"uint256"},{"internalType":"bool","name":"isCryptoPunks","type":"bool"}],"name":"mintToBcn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minteds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainBonus","outputs":[{"internalType":"uint256","name":"ownerBonus","type":"uint256"},{"internalType":"uint256","name":"championBonus","type":"uint256"},{"internalType":"uint256","name":"topEightBonus","type":"uint256"},{"internalType":"uint256","name":"consolationPrize","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bcns","type":"address[]"}],"name":"removeBcn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_championTokenAmount","type":"uint256"}],"name":"setChampionTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_claimSignAddress","type":"address"}],"name":"setClaimSignedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"},{"internalType":"bool","name":"isDisapprove","type":"bool"}],"name":"setDisapprovedMarketplace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mintSignAddress","type":"address"}],"name":"setMintSignedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPubSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakeAddress","type":"address"}],"name":"setStakeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_topEightRightTeams","type":"uint256"}],"name":"setTopEightTeams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"topEightRightTeams","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"enum _10KWorldCup.WlType","name":"_WlType","type":"uint8"},{"internalType":"bytes","name":"_singature","type":"bytes"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526008600a556004600b556002600c819055600d819055600e556363690f60601355601580546001600160a01b03199081167366e1a1c2307c5a126ef2837969ae020ede7d654817909155601680549091167393a0f55968a2050b4bf5b900b5aa566f304194e21790553480156200007a57600080fd5b50604051620041a9380380620041a98339810160408190526200009d9162000228565b604080518082018252600d8082526c031304b20576f726c642043757609c1b602080840182815285518087019096529285528401528151919291620000e59160029162000182565b508051620000fb90600390602084019062000182565b50506001600055506200010e3362000130565b600160095580516200012890601190602084019062000182565b505062000357565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001909062000304565b90600052602060002090601f016020900481019282620001b45760008555620001ff565b82601f10620001cf57805160ff1916838001178555620001ff565b82800160010185558215620001ff579182015b82811115620001ff578251825591602001919060010190620001e2565b506200020d92915062000211565b5090565b5b808211156200020d576000815560010162000212565b600060208083850312156200023c57600080fd5b82516001600160401b03808211156200025457600080fd5b818501915085601f8301126200026957600080fd5b8151818111156200027e576200027e62000341565b604051601f8201601f19908116603f01168101908382118183101715620002a957620002a962000341565b816040528281528886848701011115620002c257600080fd5b600093505b82841015620002e65784840186015181850187015292850192620002c7565b82841115620002f85760008684830101525b98975050505050505050565b600181811c908216806200031957607f821691505b602082108114156200033b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613e4280620003676000396000f3fe6080604052600436106103bc5760003560e01c806381b02fd8116101f2578063c87b56dd1161010d578063e985e9c5116100a0578063f3d0e07a1161006f578063f3d0e07a14610b0a578063f53d667214610b3a578063fc47df1414610b5c578063feea632914610b7c57600080fd5b8063e985e9c514610a6c578063ec13b17f14610ab5578063f03f8b3c14610aca578063f2fde38b14610aea57600080fd5b8063dc5c03d3116100dc578063dc5c03d3146109f3578063dce53a0114610a09578063dd88b16214610a29578063e8f9eec814610a5657600080fd5b8063c87b56dd14610973578063c8c584e414610993578063d547cfb7146109cb578063d78d2f2e146109e057600080fd5b8063a01947cb11610185578063a9fea20411610154578063a9fea20414610902578063b472070f14610922578063b88d4fde1461093d578063bd42b89f1461095057600080fd5b8063a01947cb14610882578063a06afc81146108a2578063a22cb465146108c2578063a89f8bdb146108e257600080fd5b806394d008ef116101c157806394d008ef1461081457806395d89b41146108275780639c8857061461083c5780639fb90e7c1461085257600080fd5b806381b02fd81461076e57806385107367146107a95780638da5cb5b146107c95780638e2844ab146107e757600080fd5b80633a16a738116102e25780636e50acd41161027557806375b4d78c1161024457806375b4d78c146106d557806378b004a2146107185780637be14e9f1461072e57806380ceba1e1461074e57600080fd5b80636e50acd41461067357806370a082311461068b578063715018a6146106ab57806374f6b2c5146106c057600080fd5b80634c97f707116102b15780634c97f707146106125780635344b044146106285780635c4121011461063d5780636352211e1461065357600080fd5b80633a16a738146105aa5780633ccfd60b146105ca57806342842e0e146105df578063484b973c146105f257600080fd5b806318160ddd1161035a57806323b872dd1161032957806323b872dd1461054657806330176e131461055957806331c3c7a01461057957806332cb6b0c1461059457600080fd5b806318160ddd146104c35780631ba97836146104d857806321e67bb21461051057806323471d181461052657600080fd5b806306fdde031161039657806306fdde031461044a578063081812fc1461046c578063095ea7b31461048c57806309a2dd861461049f57600080fd5b80630193ae85146103c857806301ffc9a7146103dd578063055622921461041257600080fd5b366103c357005b600080fd5b6103db6103d63660046135e0565b610bad565b005b3480156103e957600080fd5b506103fd6103f83660046137fe565b610e4b565b60405190151581526020015b60405180910390f35b34801561041e57600080fd5b50601654610432906001600160a01b031681565b6040516001600160a01b039091168152602001610409565b34801561045657600080fd5b5061045f610e9d565b6040516104099190613b82565b34801561047857600080fd5b5061043261048736600461394a565b610f2f565b6103db61049a366004613696565b610f73565b3480156104ab57600080fd5b506104b5600d5481565b604051908152602001610409565b3480156104cf57600080fd5b506104b5610fea565b3480156104e457600080fd5b506103fd6104f3366004613469565b6001600160a01b03166000908152601d6020526040902054151590565b34801561051c57600080fd5b506104b5600b5481565b34801561053257600080fd5b506103db610541366004613469565b610ff8565b6103db6105543660046134dc565b611022565b34801561056557600080fd5b506103db610574366004613838565b6111b0565b34801561058557600080fd5b506104b5667c58508723800081565b3480156105a057600080fd5b506104b561271081565b3480156105b657600080fd5b506103db6105c536600461394a565b6111c9565b3480156105d657600080fd5b506103db6111d6565b6103db6105ed3660046134dc565b611272565b3480156105fe57600080fd5b506103db61060d366004613696565b61128d565b34801561061e57600080fd5b506104b5600a5481565b34801561063457600080fd5b506103db6112d3565b34801561064957600080fd5b506104b560105481565b34801561065f57600080fd5b5061043261066e36600461394a565b611302565b34801561067f57600080fd5b5060125460ff166103fd565b34801561069757600080fd5b506104b56106a6366004613469565b61130d565b3480156106b757600080fd5b506103db61135b565b3480156106cc57600080fd5b506103db61136f565b3480156106e157600080fd5b50601e54601f546020546021546106f89392919084565b604080519485526020850193909352918301526060820152608001610409565b34801561072457600080fd5b506104b5600c5481565b34801561073a57600080fd5b50601554610432906001600160a01b031681565b34801561075a57600080fd5b506103db610769366004613668565b6114b3565b34801561077a57600080fd5b506103fd6107893660046139ad565b601960209081526000928352604080842090915290825290205460ff1681565b3480156107b557600080fd5b50601454610432906001600160a01b031681565b3480156107d557600080fd5b506008546001600160a01b0316610432565b3480156107f357600080fd5b5061080761080236600461386d565b6114e6565b6040516104099190613b4a565b6103db6108223660046136c2565b61179b565b34801561083357600080fd5b5061045f611976565b34801561084857600080fd5b506104b5600f5481565b34801561085e57600080fd5b506103fd61086d366004613469565b601b6020526000908152604090205460ff1681565b34801561088e57600080fd5b506103db61089d36600461394a565b611985565b3480156108ae57600080fd5b506103db6108bd366004613469565b611992565b3480156108ce57600080fd5b506103db6108dd366004613668565b6119bc565b3480156108ee57600080fd5b506103db6108fd36600461371d565b611a2f565b34801561090e57600080fd5b506103db61091d36600461375e565b611b9e565b34801561092e57600080fd5b506104b566b1a2bc2ec5000081565b6103db61094b36600461351d565b61219f565b34801561095c57600080fd5b506022546023546024546025546106f89392919084565b34801561097f57600080fd5b5061045f61098e36600461394a565b6121e3565b34801561099f57600080fd5b506104b56109ae366004613696565b601a60209081526000928352604080842090915290825290205481565b3480156109d757600080fd5b5061045f6122af565b6103db6109ee366004613963565b61233d565b3480156109ff57600080fd5b506104b5600e5481565b348015610a1557600080fd5b506103db610a2436600461394a565b6126fd565b348015610a3557600080fd5b506104b5610a44366004613469565b60176020526000908152604090205481565b348015610a6257600080fd5b506104b560135481565b348015610a7857600080fd5b506103fd610a873660046134a3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ac157600080fd5b50601c546104b5565b348015610ad657600080fd5b506103db610ae536600461371d565b61270a565b348015610af657600080fd5b506103db610b05366004613469565b6128b2565b348015610b1657600080fd5b506103fd610b2536600461394a565b60009081526018602052604090205460ff1690565b348015610b4657600080fd5b50610b4f612928565b6040516104099190613afd565b348015610b6857600080fd5b506103db610b77366004613469565b61298c565b348015610b8857600080fd5b506103fd610b9736600461394a565b60009081526018602052604090205460ff161590565b61271084610bb9610fea565b610bc39190613c40565b1115610bea5760405162461bcd60e51b8152600401610be190613bed565b60405180910390fd5b610bfb667c58508723800085613c6c565b341015610c1a5760405162461bcd60e51b8152600401610be190613bbd565b601554604080516020601f85018190048102820181019092528381526001600160a01b0390921691610c9a91859085908190840183828082843760009201919091525050604051610c949250610c7991508b908a908a90602001613a05565b604051602081830303815290604052805190602001206129b6565b90612a09565b6001600160a01b031614610cf05760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c69737400000000006044820152606401610be1565b6000836003811115610d0457610d04613d7b565b1415610d5457600a546001600160a01b038716600090815260176020526040902054610d31908690613c40565b1115610d4f5760405162461bcd60e51b8152600401610be190613b95565b610e1b565b6001836003811115610d6857610d68613d7b565b1415610d9557600b546001600160a01b038716600090815260176020526040902054610d31908690613c40565b6002836003811115610da957610da9613d7b565b1415610dd657600c546001600160a01b038716600090815260176020526040902054610d31908690613c40565b600c546001600160a01b038716600090815260176020526040902054610dfd908690613c40565b1115610e1b5760405162461bcd60e51b8152600401610be190613b95565b6001600160a01b0386166000908152601760205260409020805485019055610e438585612a2d565b505050505050565b60006301ffc9a760e01b6001600160e01b031983161480610e7c57506380ac58cd60e01b6001600160e01b03198316145b80610e975750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610eac90613ce5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed890613ce5565b8015610f255780601f10610efa57610100808354040283529160200191610f25565b820191906000526020600020905b815481529060010190602001808311610f0857829003601f168201915b5050505050905090565b6000610f3a82612b24565b610f57576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6001600160a01b0382166000908152601b602052604090205460ff1615610fdc5760405162461bcd60e51b815260206004820152601b60248201527f5468652061646472657373206973206e6f7420617070726f76656400000000006044820152606401610be1565b610fe68282612b59565b5050565b600154600054036000190190565b611000612bf9565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600061102d82612c53565b9050836001600160a01b0316816001600160a01b0316146110605760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176110ad576110908633610a87565b6110ad57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166110d457604051633a954ecd60e21b815260040160405180910390fd5b80156110df57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661116a57600184016000818152600460205260409020546111685760005481146111685760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e43565b6111b8612bf9565b6111c460118383613335565b505050565b6111d1612bf9565b601055565b6111de612bf9565b60225460405160009133918381818185875af1925050503d8060008114611221576040519150601f19603f3d011682016040523d82523d6000602084013e611226565b606091505b5050600060225590508061126f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610be1565b50565b6111c48383836040518060200160405280600081525061219f565b611295612bf9565b612710816112a1610fea565b6112ab9190613c40565b11156112c95760405162461bcd60e51b8152600401610be190613bed565b610fe68282612a2d565b6112db612bf9565b6024546023546112eb9190613c40565b602381905560006024819055601f91909155602055565b6000610e9782612c53565b60006001600160a01b038216611336576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611363612bf9565b61136d6000612cbc565b565b611377612bf9565b604051806080016040528060644760146113919190613c6c565b61139b9190613c58565b815260200160646113ad476023613c6c565b6113b79190613c58565b815260200160646113c9476023613c6c565b6113d39190613c58565b815260200160646113e547600a613c6c565b6113ef9190613c58565b90528051601e55602080820151601f55604080830151909155606090910151602155805160808101909152806064611428476014613c6c565b6114329190613c58565b81526020016064611444476023613c6c565b61144e9190613c58565b81526020016064611460476023613c6c565b61146a9190613c58565b8152602001606461147c47600a613c6c565b6114869190613c58565b9052805160225560208101516023556040810151602455606001516025556012805460ff19166001179055565b6114bb612bf9565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b60606114f0612bf9565b6000836001600160401b0381111561150a5761150a613dbd565b604051908082528060200260200182016040528015611533578160200160208202803683370190505b5090506000846001600160401b0381111561155057611550613dbd565b604051908082528060200260200182016040528015611579578160200160208202803683370190505b50845190915060005b8681101561173e5785516040805160208101849052908101919091524260608201524460808201524360a0820152829060c0016040516020818303038152906040528051906020012060001c6115d89190613d3b565b8482815181106115ea576115ea613da7565b6020026020010181815250508584828151811061160957611609613da7565b60200260200101518151811061162157611621613da7565b602002602001015183828151811061163b5761163b613da7565b60200260200101818152505060008660018389516116599190613c8b565b6116639190613c8b565b8151811061167357611673613da7565b602002602001015190508685838151811061169057611690613da7565b6020026020010151815181106116a8576116a8613da7565b6020026020010151876001848a516116c09190613c8b565b6116ca9190613c8b565b815181106116da576116da613da7565b60200260200101818152505080878684815181106116fa576116fa613da7565b60200260200101518151811061171257611712613da7565b60209081029190910101528261172781613cce565b93505050808061173690613d20565b915050611582565b50878760405161174f929190613a81565b60405180910390207fae2d510396e2d23f924831e683bcfbc45d4d9d91ccc4a8e12bddcc836bf7d61f836040516117869190613b4a565b60405180910390a2509150505b949350505050565b6013544210156117e25760405162461bcd60e51b81526020600482015260126024820152714e6f74206f6e207075626c69632073616c6560701b6044820152606401610be1565b612710836117ee610fea565b6117f89190613c40565b11156118165760405162461bcd60e51b8152600401610be190613bed565b600e546001600160a01b03851660009081526017602052604090205461183d908590613c40565b111561185b5760405162461bcd60e51b8152600401610be190613b95565b61186c66b1a2bc2ec5000084613c6c565b34101561188b5760405162461bcd60e51b8152600401610be190613bbd565b601554604080516020601f85018190048102820181019092528381526001600160a01b0390921691611901918590859081908401838280828437600092019190915250506040516bffffffffffffffffffffffff1960608b901b16602082015260348101899052610c9492506054019050610c79565b6001600160a01b0316146119485760405162461bcd60e51b815260206004820152600e60248201526d14da59db985d1d5c994819985a5b60921b6044820152606401610be1565b6001600160a01b03841660009081526017602052604090208054840190556119708484612a2d565b50505050565b606060038054610eac90613ce5565b61198d612bf9565b601355565b61199a612bf9565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166000908152601b602052604090205460ff1615611a255760405162461bcd60e51b815260206004820152601b60248201527f5468652061646472657373206973206e6f7420617070726f76656400000000006044820152606401610be1565b610fe68282612d0e565b611a37612bf9565b60005b818110156111c45730631ba97836848484818110611a5a57611a5a613da7565b9050602002016020810190611a6f9190613469565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b158015611aae57600080fd5b505afa158015611ac2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae691906137e1565b611b8c57601c838383818110611afe57611afe613da7565b9050602002016020810190611b139190613469565b81546001810183556000928352602083200180546001600160a01b0319166001600160a01b0392909216919091179055601c5490601d90858585818110611b5c57611b5c613da7565b9050602002016020810190611b719190613469565b6001600160a01b031681526020810191909152604001600020555b80611b9681613d20565b915050611a3a565b60026009541415611bf15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610be1565b600260095560125460ff16611c3c5760405162461bcd60e51b81526020600482015260116024820152704e6f742074696d6520746f20636c61696d60781b6044820152606401610be1565b7ffa26db7ca85ead399216e7c6316bc50ed24393c3122b582735e7f3b0f91b93f060005b85811015611f475733611c8a888884818110611c7e57611c7e613da7565b90506020020135611302565b6001600160a01b031614611d805760145433906001600160a01b03166317968dff898985818110611cbd57611cbd613da7565b905060200201356040518263ffffffff1660e01b8152600401611ce291815260200190565b60206040518083038186803b158015611cfa57600080fd5b505afa158015611d0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d329190613486565b6001600160a01b031614611d805760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b6044820152606401610be1565b60196000888884818110611d9657611d96613da7565b60209081029290920135835250818101929092526040908101600090812060ff808a168352935220541615611e195760405162461bcd60e51b815260206004820152602360248201527f596f75206861766520616c72656164792072656365697665642074686520626f6044820152626e757360e81b6064820152608401610be1565b600160196000898985818110611e3157611e31613da7565b90506020020135815260200190815260200160002060008760ff1660ff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000898985818110611e8c57611e8c613da7565b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508133888884818110611ecc57611ecc613da7565b9050602002013587604051602001611f1c949392919093845260609290921b6bffffffffffffffffffffffff19166020840152603483015260f81b6001600160f81b031916605482015260550190565b6040516020818303038152906040528051906020012091508080611f3f90613d20565b915050611c60565b50601654604080516020601f86018190048102820181019092528481526001600160a01b0390921691611f9a918690869081908401838280828437600092019190915250610c9492508691506129b69050565b6001600160a01b031614611ffc5760405162461bcd60e51b815260206004820152602360248201527f596f752063616e2774206765742074686520636f6e736f6c6174696f6e207072604482015262697a6560e81b6064820152608401610be1565b60ff841661208957601054601f5460009161201691613c58565b602354909150156120535761202b8682613c6c565b6023546120389190613c8b565b60235561204e336120498884613c6c565b612d7a565b612087565b60405162461bcd60e51b815260206004820152600960248201526810db185a5b48195b9960ba1b6044820152606401610be1565b505b60ff8416600114156120eb5760006008600f54601e600201546120ac9190613c58565b6120b69190613c58565b60245490915015612053576120cb8682613c6c565b6024546120d89190613c8b565b6024556120e9336120498884613c6c565b505b60ff84166002141561214c576000600a6018601e6003015461210d9190613c58565b6121179190613c58565b602554909150156120535761212c8682613c6c565b6025546121399190613c8b565b60255561214a336120498884613c6c565b505b8360ff168686604051612160929190613a55565b6040519081900381209033907f340acc4507bd9d4fcb8cb291e68842d3aa15325663dd7132f507213ee1fc5ef990600090a45050600160095550505050565b6121aa848484611022565b6001600160a01b0383163b15611970576121c684848484612e93565b611970576040516368d2bf6b60e11b815260040160405180910390fd5b60606121ee82612b24565b6122525760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610be1565b600061225c612f87565b905080516000141561227d57604051806020016040528060008152506122a8565b8061228784612f96565b604051602001612298929190613a91565b6040516020818303038152906040525b9392505050565b601180546122bc90613ce5565b80601f01602080910402602001604051908101604052809291908181526020018280546122e890613ce5565b80156123355780601f1061230a57610100808354040283529160200191612335565b820191906000526020600020905b81548152906001019060200180831161231857829003601f168201915b505050505081565b600081156123c457604051630b02f02d60e31b8152600481018490526001600160a01b0385169063581781689060240160206040518083038186803b15801561238557600080fd5b505afa158015612399573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123bd9190613486565b905061243f565b6040516331a9108f60e11b8152600481018490526001600160a01b03851690636352211e9060240160206040518083038186803b15801561240457600080fd5b505afa158015612418573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243c9190613486565b90505b6001600160a01b03811661248e5760405162461bcd60e51b815260206004820152601660248201527542636e546f6b656e4964206e6f74206578697374732160501b6044820152606401610be1565b6001600160a01b038085166000908152601a6020908152604080832087845282528083205493851683526017909152902054600d546124cd8884613c40565b111561251b5760405162461bcd60e51b815260206004820152601860248201527f42636e546f6b656e49642069732075736564206c696d697400000000000000006044820152606401610be1565b604051630dd4bc1b60e11b81526001600160a01b03871660048201523090631ba978369060240160206040518083038186803b15801561255a57600080fd5b505afa15801561256e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061259291906137e1565b6125d55760405162461bcd60e51b81526020600482015260146024820152732737ba1039bab83837b93a103a3434b9903131b760611b6044820152606401610be1565b600d546125e28883613c40565b11156126005760405162461bcd60e51b8152600401610be190613b95565b6127108761260c610fea565b6126169190613c40565b11156126345760405162461bcd60e51b8152600401610be190613bed565b612645667c58508723800088613c6c565b3410156126645760405162461bcd60e51b8152600401610be190613bbd565b6001600160a01b038084166000908152601760209081526040808320858c0190559289168252601a815282822088835290522082880190556126a68388612a2d565b856001600160a01b031687846001600160a01b03167f1313a106430aceffba19452cbc52f96e2aca9f45a4acdbbeae07bcd4e4eb66dc886040516126ec91815260200190565b60405180910390a450505050505050565b612705612bf9565b600f55565b612712612bf9565b60005b818110156111c4576000601d8185858581811061273457612734613da7565b90506020020160208101906127499190613469565b6001600160a01b031681526020810191909152604001600020549050801561289f576000612778600183613c8b565b601c5490915060009061278d90600190613c8b565b9050818114612818576000601c60000182815481106127ae576127ae613da7565b600091825260209091200154601c80546001600160a01b0390921692508291859081106127dd576127dd613da7565b600091825260208083209190910180546001600160a01b0319166001600160a01b03948516179055929091168152601d909152604090208390555b601c80548061282957612829613d91565b600082815260208120820160001990810180546001600160a01b0319169055909101909155601d9087878781811061286357612863613da7565b90506020020160208101906128789190613469565b6001600160a01b03166001600160a01b031681526020019081526020016000206000905550505b50806128aa81613d20565b915050612715565b6128ba612bf9565b6001600160a01b03811661291f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610be1565b61126f81612cbc565b6060601c600001805480602002602001604051908101604052809291908181526020018280548015610f2557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612965575050505050905090565b612994612bf9565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6000806000612a188585612fe4565b91509150612a2581613054565b509392505050565b60005481612a4e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114612afd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612ac5565b5081612b1b57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081600111158015612b38575060005482105b8015610e97575050600090815260046020526040902054600160e01b161590565b6000612b6482611302565b9050336001600160a01b03821614612b9d57612b808133610a87565b612b9d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461136d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610be1565b60008180600111612ca357600054811015612ca357600081815260046020526040902054600160e01b8116612ca1575b806122a8575060001901600081815260046020526040902054612c83565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b80471015612dca5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610be1565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e17576040519150601f19603f3d011682016040523d82523d6000602084013e612e1c565b606091505b50509050806111c45760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610be1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612ec8903390899088908890600401613ac0565b602060405180830381600087803b158015612ee257600080fd5b505af1925050508015612f12575060408051601f3d908101601f19168201909252612f0f9181019061381b565b60015b612f6d573d808015612f40576040519150601f19603f3d011682016040523d82523d6000602084013e612f45565b606091505b508051612f65576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611793565b606060118054610eac90613ce5565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480612fcd57612fd2565b612fb0565b50819003601f19909101908152919050565b60008082516041141561301b5760208301516040840151606085015160001a61300f8782858561320f565b9450945050505061304d565b825160401415613045576020830151604084015161303a8683836132fc565b93509350505061304d565b506000905060025b9250929050565b600081600481111561306857613068613d7b565b14156130715750565b600181600481111561308557613085613d7b565b14156130d35760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610be1565b60028160048111156130e7576130e7613d7b565b14156131355760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610be1565b600381600481111561314957613149613d7b565b14156131a25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610be1565b60048160048111156131b6576131b6613d7b565b141561126f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610be1565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561324657506000905060036132f3565b8460ff16601b1415801561325e57508460ff16601c14155b1561326f57506000905060046132f3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156132c3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166132ec576000600192509250506132f3565b9150600090505b94509492505050565b6000806001600160ff1b0383168161331960ff86901c601b613c40565b90506133278782888561320f565b935093505050935093915050565b82805461334190613ce5565b90600052602060002090601f01602090048101928261336357600085556133a9565b82601f1061337c5782800160ff198235161785556133a9565b828001600101855582156133a9579182015b828111156133a957823582559160200191906001019061338e565b506133b59291506133b9565b5090565b5b808211156133b557600081556001016133ba565b60008083601f8401126133e057600080fd5b5081356001600160401b038111156133f757600080fd5b6020830191508360208260051b850101111561304d57600080fd5b60008083601f84011261342457600080fd5b5081356001600160401b0381111561343b57600080fd5b60208301915083602082850101111561304d57600080fd5b803560ff8116811461346457600080fd5b919050565b60006020828403121561347b57600080fd5b81356122a881613dd3565b60006020828403121561349857600080fd5b81516122a881613dd3565b600080604083850312156134b657600080fd5b82356134c181613dd3565b915060208301356134d181613dd3565b809150509250929050565b6000806000606084860312156134f157600080fd5b83356134fc81613dd3565b9250602084013561350c81613dd3565b929592945050506040919091013590565b6000806000806080858703121561353357600080fd5b843561353e81613dd3565b935060208581013561354f81613dd3565b93506040860135925060608601356001600160401b038082111561357257600080fd5b818801915088601f83011261358657600080fd5b81358181111561359857613598613dbd565b6135aa601f8201601f19168501613c10565b915080825289848285010111156135c057600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060008060008060a087890312156135f957600080fd5b863561360481613dd3565b9550602087013561361481613dd3565b94506040870135935060608701356004811061362f57600080fd5b925060808701356001600160401b0381111561364a57600080fd5b61365689828a01613412565b979a9699509497509295939492505050565b6000806040838503121561367b57600080fd5b823561368681613dd3565b915060208301356134d181613de8565b600080604083850312156136a957600080fd5b82356136b481613dd3565b946020939093013593505050565b600080600080606085870312156136d857600080fd5b84356136e381613dd3565b93506020850135925060408501356001600160401b0381111561370557600080fd5b61371187828801613412565b95989497509550505050565b6000806020838503121561373057600080fd5b82356001600160401b0381111561374657600080fd5b613752858286016133ce565b90969095509350505050565b60008060008060006060868803121561377657600080fd5b85356001600160401b038082111561378d57600080fd5b61379989838a016133ce565b90975095508591506137ad60208901613453565b945060408801359150808211156137c357600080fd5b506137d088828901613412565b969995985093965092949392505050565b6000602082840312156137f357600080fd5b81516122a881613de8565b60006020828403121561381057600080fd5b81356122a881613df6565b60006020828403121561382d57600080fd5b81516122a881613df6565b6000806020838503121561384b57600080fd5b82356001600160401b0381111561386157600080fd5b61375285828601613412565b6000806000806060858703121561388357600080fd5b84356001600160401b038082111561389a57600080fd5b6138a688838901613412565b9096509450602087810135945091506040870135818111156138c757600080fd5b8701601f810189136138d857600080fd5b8035828111156138ea576138ea613dbd565b8060051b92506138fb848401613c10565b8181528481019083860185850187018d101561391657600080fd5b600095505b8386101561393957803583526001959095019491860191860161391b565b50989b979a50959850505050505050565b60006020828403121561395c57600080fd5b5035919050565b6000806000806080858703121561397957600080fd5b84359350602085013561398b81613dd3565b92506040850135915060608501356139a281613de8565b939692955090935050565b600080604083850312156139c057600080fd5b823591506139d060208401613453565b90509250929050565b600081518084526139f1816020860160208601613ca2565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff198460601b168152826014820152600060048310613a4057634e487b7160e01b600052602160045260246000fd5b5060f89190911b603482015260350192915050565b60006001600160fb1b03831115613a6b57600080fd5b8260051b80858437600092019182525092915050565b8183823760009101908152919050565b60008351613aa3818460208801613ca2565b835190830190613ab7818360208801613ca2565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613af3908301846139d9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613b3e5783516001600160a01b031683529284019291840191600101613b19565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613b3e57835183529284019291840191600101613b66565b6020815260006122a860208301846139d9565b6020808252600e908201526d131a5b5a5d08195e18d95959195960921b604082015260600190565b6020808252601690820152754e6f7420706179696e6720656e6f756768206665657360501b604082015260600190565b602080825260099082015268536f6c64206f75742160b81b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715613c3857613c38613dbd565b604052919050565b60008219821115613c5357613c53613d4f565b500190565b600082613c6757613c67613d65565b500490565b6000816000190483118215151615613c8657613c86613d4f565b500290565b600082821015613c9d57613c9d613d4f565b500390565b60005b83811015613cbd578181015183820152602001613ca5565b838111156119705750506000910152565b600081613cdd57613cdd613d4f565b506000190190565b600181811c90821680613cf957607f821691505b60208210811415613d1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d3457613d34613d4f565b5060010190565b600082613d4a57613d4a613d65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461126f57600080fd5b801515811461126f57600080fd5b6001600160e01b03198116811461126f57600080fdfea26469706673582212200442e9913461729be3308b3cf560f0a49b9028ffb83ac7f9a59ed95190243c4e64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e31306b776f726c646375702e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103bc5760003560e01c806381b02fd8116101f2578063c87b56dd1161010d578063e985e9c5116100a0578063f3d0e07a1161006f578063f3d0e07a14610b0a578063f53d667214610b3a578063fc47df1414610b5c578063feea632914610b7c57600080fd5b8063e985e9c514610a6c578063ec13b17f14610ab5578063f03f8b3c14610aca578063f2fde38b14610aea57600080fd5b8063dc5c03d3116100dc578063dc5c03d3146109f3578063dce53a0114610a09578063dd88b16214610a29578063e8f9eec814610a5657600080fd5b8063c87b56dd14610973578063c8c584e414610993578063d547cfb7146109cb578063d78d2f2e146109e057600080fd5b8063a01947cb11610185578063a9fea20411610154578063a9fea20414610902578063b472070f14610922578063b88d4fde1461093d578063bd42b89f1461095057600080fd5b8063a01947cb14610882578063a06afc81146108a2578063a22cb465146108c2578063a89f8bdb146108e257600080fd5b806394d008ef116101c157806394d008ef1461081457806395d89b41146108275780639c8857061461083c5780639fb90e7c1461085257600080fd5b806381b02fd81461076e57806385107367146107a95780638da5cb5b146107c95780638e2844ab146107e757600080fd5b80633a16a738116102e25780636e50acd41161027557806375b4d78c1161024457806375b4d78c146106d557806378b004a2146107185780637be14e9f1461072e57806380ceba1e1461074e57600080fd5b80636e50acd41461067357806370a082311461068b578063715018a6146106ab57806374f6b2c5146106c057600080fd5b80634c97f707116102b15780634c97f707146106125780635344b044146106285780635c4121011461063d5780636352211e1461065357600080fd5b80633a16a738146105aa5780633ccfd60b146105ca57806342842e0e146105df578063484b973c146105f257600080fd5b806318160ddd1161035a57806323b872dd1161032957806323b872dd1461054657806330176e131461055957806331c3c7a01461057957806332cb6b0c1461059457600080fd5b806318160ddd146104c35780631ba97836146104d857806321e67bb21461051057806323471d181461052657600080fd5b806306fdde031161039657806306fdde031461044a578063081812fc1461046c578063095ea7b31461048c57806309a2dd861461049f57600080fd5b80630193ae85146103c857806301ffc9a7146103dd578063055622921461041257600080fd5b366103c357005b600080fd5b6103db6103d63660046135e0565b610bad565b005b3480156103e957600080fd5b506103fd6103f83660046137fe565b610e4b565b60405190151581526020015b60405180910390f35b34801561041e57600080fd5b50601654610432906001600160a01b031681565b6040516001600160a01b039091168152602001610409565b34801561045657600080fd5b5061045f610e9d565b6040516104099190613b82565b34801561047857600080fd5b5061043261048736600461394a565b610f2f565b6103db61049a366004613696565b610f73565b3480156104ab57600080fd5b506104b5600d5481565b604051908152602001610409565b3480156104cf57600080fd5b506104b5610fea565b3480156104e457600080fd5b506103fd6104f3366004613469565b6001600160a01b03166000908152601d6020526040902054151590565b34801561051c57600080fd5b506104b5600b5481565b34801561053257600080fd5b506103db610541366004613469565b610ff8565b6103db6105543660046134dc565b611022565b34801561056557600080fd5b506103db610574366004613838565b6111b0565b34801561058557600080fd5b506104b5667c58508723800081565b3480156105a057600080fd5b506104b561271081565b3480156105b657600080fd5b506103db6105c536600461394a565b6111c9565b3480156105d657600080fd5b506103db6111d6565b6103db6105ed3660046134dc565b611272565b3480156105fe57600080fd5b506103db61060d366004613696565b61128d565b34801561061e57600080fd5b506104b5600a5481565b34801561063457600080fd5b506103db6112d3565b34801561064957600080fd5b506104b560105481565b34801561065f57600080fd5b5061043261066e36600461394a565b611302565b34801561067f57600080fd5b5060125460ff166103fd565b34801561069757600080fd5b506104b56106a6366004613469565b61130d565b3480156106b757600080fd5b506103db61135b565b3480156106cc57600080fd5b506103db61136f565b3480156106e157600080fd5b50601e54601f546020546021546106f89392919084565b604080519485526020850193909352918301526060820152608001610409565b34801561072457600080fd5b506104b5600c5481565b34801561073a57600080fd5b50601554610432906001600160a01b031681565b34801561075a57600080fd5b506103db610769366004613668565b6114b3565b34801561077a57600080fd5b506103fd6107893660046139ad565b601960209081526000928352604080842090915290825290205460ff1681565b3480156107b557600080fd5b50601454610432906001600160a01b031681565b3480156107d557600080fd5b506008546001600160a01b0316610432565b3480156107f357600080fd5b5061080761080236600461386d565b6114e6565b6040516104099190613b4a565b6103db6108223660046136c2565b61179b565b34801561083357600080fd5b5061045f611976565b34801561084857600080fd5b506104b5600f5481565b34801561085e57600080fd5b506103fd61086d366004613469565b601b6020526000908152604090205460ff1681565b34801561088e57600080fd5b506103db61089d36600461394a565b611985565b3480156108ae57600080fd5b506103db6108bd366004613469565b611992565b3480156108ce57600080fd5b506103db6108dd366004613668565b6119bc565b3480156108ee57600080fd5b506103db6108fd36600461371d565b611a2f565b34801561090e57600080fd5b506103db61091d36600461375e565b611b9e565b34801561092e57600080fd5b506104b566b1a2bc2ec5000081565b6103db61094b36600461351d565b61219f565b34801561095c57600080fd5b506022546023546024546025546106f89392919084565b34801561097f57600080fd5b5061045f61098e36600461394a565b6121e3565b34801561099f57600080fd5b506104b56109ae366004613696565b601a60209081526000928352604080842090915290825290205481565b3480156109d757600080fd5b5061045f6122af565b6103db6109ee366004613963565b61233d565b3480156109ff57600080fd5b506104b5600e5481565b348015610a1557600080fd5b506103db610a2436600461394a565b6126fd565b348015610a3557600080fd5b506104b5610a44366004613469565b60176020526000908152604090205481565b348015610a6257600080fd5b506104b560135481565b348015610a7857600080fd5b506103fd610a873660046134a3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ac157600080fd5b50601c546104b5565b348015610ad657600080fd5b506103db610ae536600461371d565b61270a565b348015610af657600080fd5b506103db610b05366004613469565b6128b2565b348015610b1657600080fd5b506103fd610b2536600461394a565b60009081526018602052604090205460ff1690565b348015610b4657600080fd5b50610b4f612928565b6040516104099190613afd565b348015610b6857600080fd5b506103db610b77366004613469565b61298c565b348015610b8857600080fd5b506103fd610b9736600461394a565b60009081526018602052604090205460ff161590565b61271084610bb9610fea565b610bc39190613c40565b1115610bea5760405162461bcd60e51b8152600401610be190613bed565b60405180910390fd5b610bfb667c58508723800085613c6c565b341015610c1a5760405162461bcd60e51b8152600401610be190613bbd565b601554604080516020601f85018190048102820181019092528381526001600160a01b0390921691610c9a91859085908190840183828082843760009201919091525050604051610c949250610c7991508b908a908a90602001613a05565b604051602081830303815290604052805190602001206129b6565b90612a09565b6001600160a01b031614610cf05760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c69737400000000006044820152606401610be1565b6000836003811115610d0457610d04613d7b565b1415610d5457600a546001600160a01b038716600090815260176020526040902054610d31908690613c40565b1115610d4f5760405162461bcd60e51b8152600401610be190613b95565b610e1b565b6001836003811115610d6857610d68613d7b565b1415610d9557600b546001600160a01b038716600090815260176020526040902054610d31908690613c40565b6002836003811115610da957610da9613d7b565b1415610dd657600c546001600160a01b038716600090815260176020526040902054610d31908690613c40565b600c546001600160a01b038716600090815260176020526040902054610dfd908690613c40565b1115610e1b5760405162461bcd60e51b8152600401610be190613b95565b6001600160a01b0386166000908152601760205260409020805485019055610e438585612a2d565b505050505050565b60006301ffc9a760e01b6001600160e01b031983161480610e7c57506380ac58cd60e01b6001600160e01b03198316145b80610e975750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610eac90613ce5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed890613ce5565b8015610f255780601f10610efa57610100808354040283529160200191610f25565b820191906000526020600020905b815481529060010190602001808311610f0857829003601f168201915b5050505050905090565b6000610f3a82612b24565b610f57576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6001600160a01b0382166000908152601b602052604090205460ff1615610fdc5760405162461bcd60e51b815260206004820152601b60248201527f5468652061646472657373206973206e6f7420617070726f76656400000000006044820152606401610be1565b610fe68282612b59565b5050565b600154600054036000190190565b611000612bf9565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600061102d82612c53565b9050836001600160a01b0316816001600160a01b0316146110605760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176110ad576110908633610a87565b6110ad57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166110d457604051633a954ecd60e21b815260040160405180910390fd5b80156110df57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661116a57600184016000818152600460205260409020546111685760005481146111685760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e43565b6111b8612bf9565b6111c460118383613335565b505050565b6111d1612bf9565b601055565b6111de612bf9565b60225460405160009133918381818185875af1925050503d8060008114611221576040519150601f19603f3d011682016040523d82523d6000602084013e611226565b606091505b5050600060225590508061126f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610be1565b50565b6111c48383836040518060200160405280600081525061219f565b611295612bf9565b612710816112a1610fea565b6112ab9190613c40565b11156112c95760405162461bcd60e51b8152600401610be190613bed565b610fe68282612a2d565b6112db612bf9565b6024546023546112eb9190613c40565b602381905560006024819055601f91909155602055565b6000610e9782612c53565b60006001600160a01b038216611336576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b611363612bf9565b61136d6000612cbc565b565b611377612bf9565b604051806080016040528060644760146113919190613c6c565b61139b9190613c58565b815260200160646113ad476023613c6c565b6113b79190613c58565b815260200160646113c9476023613c6c565b6113d39190613c58565b815260200160646113e547600a613c6c565b6113ef9190613c58565b90528051601e55602080820151601f55604080830151909155606090910151602155805160808101909152806064611428476014613c6c565b6114329190613c58565b81526020016064611444476023613c6c565b61144e9190613c58565b81526020016064611460476023613c6c565b61146a9190613c58565b8152602001606461147c47600a613c6c565b6114869190613c58565b9052805160225560208101516023556040810151602455606001516025556012805460ff19166001179055565b6114bb612bf9565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b60606114f0612bf9565b6000836001600160401b0381111561150a5761150a613dbd565b604051908082528060200260200182016040528015611533578160200160208202803683370190505b5090506000846001600160401b0381111561155057611550613dbd565b604051908082528060200260200182016040528015611579578160200160208202803683370190505b50845190915060005b8681101561173e5785516040805160208101849052908101919091524260608201524460808201524360a0820152829060c0016040516020818303038152906040528051906020012060001c6115d89190613d3b565b8482815181106115ea576115ea613da7565b6020026020010181815250508584828151811061160957611609613da7565b60200260200101518151811061162157611621613da7565b602002602001015183828151811061163b5761163b613da7565b60200260200101818152505060008660018389516116599190613c8b565b6116639190613c8b565b8151811061167357611673613da7565b602002602001015190508685838151811061169057611690613da7565b6020026020010151815181106116a8576116a8613da7565b6020026020010151876001848a516116c09190613c8b565b6116ca9190613c8b565b815181106116da576116da613da7565b60200260200101818152505080878684815181106116fa576116fa613da7565b60200260200101518151811061171257611712613da7565b60209081029190910101528261172781613cce565b93505050808061173690613d20565b915050611582565b50878760405161174f929190613a81565b60405180910390207fae2d510396e2d23f924831e683bcfbc45d4d9d91ccc4a8e12bddcc836bf7d61f836040516117869190613b4a565b60405180910390a2509150505b949350505050565b6013544210156117e25760405162461bcd60e51b81526020600482015260126024820152714e6f74206f6e207075626c69632073616c6560701b6044820152606401610be1565b612710836117ee610fea565b6117f89190613c40565b11156118165760405162461bcd60e51b8152600401610be190613bed565b600e546001600160a01b03851660009081526017602052604090205461183d908590613c40565b111561185b5760405162461bcd60e51b8152600401610be190613b95565b61186c66b1a2bc2ec5000084613c6c565b34101561188b5760405162461bcd60e51b8152600401610be190613bbd565b601554604080516020601f85018190048102820181019092528381526001600160a01b0390921691611901918590859081908401838280828437600092019190915250506040516bffffffffffffffffffffffff1960608b901b16602082015260348101899052610c9492506054019050610c79565b6001600160a01b0316146119485760405162461bcd60e51b815260206004820152600e60248201526d14da59db985d1d5c994819985a5b60921b6044820152606401610be1565b6001600160a01b03841660009081526017602052604090208054840190556119708484612a2d565b50505050565b606060038054610eac90613ce5565b61198d612bf9565b601355565b61199a612bf9565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166000908152601b602052604090205460ff1615611a255760405162461bcd60e51b815260206004820152601b60248201527f5468652061646472657373206973206e6f7420617070726f76656400000000006044820152606401610be1565b610fe68282612d0e565b611a37612bf9565b60005b818110156111c45730631ba97836848484818110611a5a57611a5a613da7565b9050602002016020810190611a6f9190613469565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b158015611aae57600080fd5b505afa158015611ac2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae691906137e1565b611b8c57601c838383818110611afe57611afe613da7565b9050602002016020810190611b139190613469565b81546001810183556000928352602083200180546001600160a01b0319166001600160a01b0392909216919091179055601c5490601d90858585818110611b5c57611b5c613da7565b9050602002016020810190611b719190613469565b6001600160a01b031681526020810191909152604001600020555b80611b9681613d20565b915050611a3a565b60026009541415611bf15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610be1565b600260095560125460ff16611c3c5760405162461bcd60e51b81526020600482015260116024820152704e6f742074696d6520746f20636c61696d60781b6044820152606401610be1565b7ffa26db7ca85ead399216e7c6316bc50ed24393c3122b582735e7f3b0f91b93f060005b85811015611f475733611c8a888884818110611c7e57611c7e613da7565b90506020020135611302565b6001600160a01b031614611d805760145433906001600160a01b03166317968dff898985818110611cbd57611cbd613da7565b905060200201356040518263ffffffff1660e01b8152600401611ce291815260200190565b60206040518083038186803b158015611cfa57600080fd5b505afa158015611d0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d329190613486565b6001600160a01b031614611d805760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b6044820152606401610be1565b60196000888884818110611d9657611d96613da7565b60209081029290920135835250818101929092526040908101600090812060ff808a168352935220541615611e195760405162461bcd60e51b815260206004820152602360248201527f596f75206861766520616c72656164792072656365697665642074686520626f6044820152626e757360e81b6064820152608401610be1565b600160196000898985818110611e3157611e31613da7565b90506020020135815260200190815260200160002060008760ff1660ff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000898985818110611e8c57611e8c613da7565b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508133888884818110611ecc57611ecc613da7565b9050602002013587604051602001611f1c949392919093845260609290921b6bffffffffffffffffffffffff19166020840152603483015260f81b6001600160f81b031916605482015260550190565b6040516020818303038152906040528051906020012091508080611f3f90613d20565b915050611c60565b50601654604080516020601f86018190048102820181019092528481526001600160a01b0390921691611f9a918690869081908401838280828437600092019190915250610c9492508691506129b69050565b6001600160a01b031614611ffc5760405162461bcd60e51b815260206004820152602360248201527f596f752063616e2774206765742074686520636f6e736f6c6174696f6e207072604482015262697a6560e81b6064820152608401610be1565b60ff841661208957601054601f5460009161201691613c58565b602354909150156120535761202b8682613c6c565b6023546120389190613c8b565b60235561204e336120498884613c6c565b612d7a565b612087565b60405162461bcd60e51b815260206004820152600960248201526810db185a5b48195b9960ba1b6044820152606401610be1565b505b60ff8416600114156120eb5760006008600f54601e600201546120ac9190613c58565b6120b69190613c58565b60245490915015612053576120cb8682613c6c565b6024546120d89190613c8b565b6024556120e9336120498884613c6c565b505b60ff84166002141561214c576000600a6018601e6003015461210d9190613c58565b6121179190613c58565b602554909150156120535761212c8682613c6c565b6025546121399190613c8b565b60255561214a336120498884613c6c565b505b8360ff168686604051612160929190613a55565b6040519081900381209033907f340acc4507bd9d4fcb8cb291e68842d3aa15325663dd7132f507213ee1fc5ef990600090a45050600160095550505050565b6121aa848484611022565b6001600160a01b0383163b15611970576121c684848484612e93565b611970576040516368d2bf6b60e11b815260040160405180910390fd5b60606121ee82612b24565b6122525760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610be1565b600061225c612f87565b905080516000141561227d57604051806020016040528060008152506122a8565b8061228784612f96565b604051602001612298929190613a91565b6040516020818303038152906040525b9392505050565b601180546122bc90613ce5565b80601f01602080910402602001604051908101604052809291908181526020018280546122e890613ce5565b80156123355780601f1061230a57610100808354040283529160200191612335565b820191906000526020600020905b81548152906001019060200180831161231857829003601f168201915b505050505081565b600081156123c457604051630b02f02d60e31b8152600481018490526001600160a01b0385169063581781689060240160206040518083038186803b15801561238557600080fd5b505afa158015612399573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123bd9190613486565b905061243f565b6040516331a9108f60e11b8152600481018490526001600160a01b03851690636352211e9060240160206040518083038186803b15801561240457600080fd5b505afa158015612418573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243c9190613486565b90505b6001600160a01b03811661248e5760405162461bcd60e51b815260206004820152601660248201527542636e546f6b656e4964206e6f74206578697374732160501b6044820152606401610be1565b6001600160a01b038085166000908152601a6020908152604080832087845282528083205493851683526017909152902054600d546124cd8884613c40565b111561251b5760405162461bcd60e51b815260206004820152601860248201527f42636e546f6b656e49642069732075736564206c696d697400000000000000006044820152606401610be1565b604051630dd4bc1b60e11b81526001600160a01b03871660048201523090631ba978369060240160206040518083038186803b15801561255a57600080fd5b505afa15801561256e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061259291906137e1565b6125d55760405162461bcd60e51b81526020600482015260146024820152732737ba1039bab83837b93a103a3434b9903131b760611b6044820152606401610be1565b600d546125e28883613c40565b11156126005760405162461bcd60e51b8152600401610be190613b95565b6127108761260c610fea565b6126169190613c40565b11156126345760405162461bcd60e51b8152600401610be190613bed565b612645667c58508723800088613c6c565b3410156126645760405162461bcd60e51b8152600401610be190613bbd565b6001600160a01b038084166000908152601760209081526040808320858c0190559289168252601a815282822088835290522082880190556126a68388612a2d565b856001600160a01b031687846001600160a01b03167f1313a106430aceffba19452cbc52f96e2aca9f45a4acdbbeae07bcd4e4eb66dc886040516126ec91815260200190565b60405180910390a450505050505050565b612705612bf9565b600f55565b612712612bf9565b60005b818110156111c4576000601d8185858581811061273457612734613da7565b90506020020160208101906127499190613469565b6001600160a01b031681526020810191909152604001600020549050801561289f576000612778600183613c8b565b601c5490915060009061278d90600190613c8b565b9050818114612818576000601c60000182815481106127ae576127ae613da7565b600091825260209091200154601c80546001600160a01b0390921692508291859081106127dd576127dd613da7565b600091825260208083209190910180546001600160a01b0319166001600160a01b03948516179055929091168152601d909152604090208390555b601c80548061282957612829613d91565b600082815260208120820160001990810180546001600160a01b0319169055909101909155601d9087878781811061286357612863613da7565b90506020020160208101906128789190613469565b6001600160a01b03166001600160a01b031681526020019081526020016000206000905550505b50806128aa81613d20565b915050612715565b6128ba612bf9565b6001600160a01b03811661291f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610be1565b61126f81612cbc565b6060601c600001805480602002602001604051908101604052809291908181526020018280548015610f2557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612965575050505050905090565b612994612bf9565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6000806000612a188585612fe4565b91509150612a2581613054565b509392505050565b60005481612a4e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114612afd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612ac5565b5081612b1b57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081600111158015612b38575060005482105b8015610e97575050600090815260046020526040902054600160e01b161590565b6000612b6482611302565b9050336001600160a01b03821614612b9d57612b808133610a87565b612b9d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0316331461136d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610be1565b60008180600111612ca357600054811015612ca357600081815260046020526040902054600160e01b8116612ca1575b806122a8575060001901600081815260046020526040902054612c83565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b80471015612dca5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610be1565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e17576040519150601f19603f3d011682016040523d82523d6000602084013e612e1c565b606091505b50509050806111c45760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610be1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612ec8903390899088908890600401613ac0565b602060405180830381600087803b158015612ee257600080fd5b505af1925050508015612f12575060408051601f3d908101601f19168201909252612f0f9181019061381b565b60015b612f6d573d808015612f40576040519150601f19603f3d011682016040523d82523d6000602084013e612f45565b606091505b508051612f65576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611793565b606060118054610eac90613ce5565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480612fcd57612fd2565b612fb0565b50819003601f19909101908152919050565b60008082516041141561301b5760208301516040840151606085015160001a61300f8782858561320f565b9450945050505061304d565b825160401415613045576020830151604084015161303a8683836132fc565b93509350505061304d565b506000905060025b9250929050565b600081600481111561306857613068613d7b565b14156130715750565b600181600481111561308557613085613d7b565b14156130d35760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610be1565b60028160048111156130e7576130e7613d7b565b14156131355760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610be1565b600381600481111561314957613149613d7b565b14156131a25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610be1565b60048160048111156131b6576131b6613d7b565b141561126f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610be1565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561324657506000905060036132f3565b8460ff16601b1415801561325e57508460ff16601c14155b1561326f57506000905060046132f3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156132c3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166132ec576000600192509250506132f3565b9150600090505b94509492505050565b6000806001600160ff1b0383168161331960ff86901c601b613c40565b90506133278782888561320f565b935093505050935093915050565b82805461334190613ce5565b90600052602060002090601f01602090048101928261336357600085556133a9565b82601f1061337c5782800160ff198235161785556133a9565b828001600101855582156133a9579182015b828111156133a957823582559160200191906001019061338e565b506133b59291506133b9565b5090565b5b808211156133b557600081556001016133ba565b60008083601f8401126133e057600080fd5b5081356001600160401b038111156133f757600080fd5b6020830191508360208260051b850101111561304d57600080fd5b60008083601f84011261342457600080fd5b5081356001600160401b0381111561343b57600080fd5b60208301915083602082850101111561304d57600080fd5b803560ff8116811461346457600080fd5b919050565b60006020828403121561347b57600080fd5b81356122a881613dd3565b60006020828403121561349857600080fd5b81516122a881613dd3565b600080604083850312156134b657600080fd5b82356134c181613dd3565b915060208301356134d181613dd3565b809150509250929050565b6000806000606084860312156134f157600080fd5b83356134fc81613dd3565b9250602084013561350c81613dd3565b929592945050506040919091013590565b6000806000806080858703121561353357600080fd5b843561353e81613dd3565b935060208581013561354f81613dd3565b93506040860135925060608601356001600160401b038082111561357257600080fd5b818801915088601f83011261358657600080fd5b81358181111561359857613598613dbd565b6135aa601f8201601f19168501613c10565b915080825289848285010111156135c057600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060008060008060a087890312156135f957600080fd5b863561360481613dd3565b9550602087013561361481613dd3565b94506040870135935060608701356004811061362f57600080fd5b925060808701356001600160401b0381111561364a57600080fd5b61365689828a01613412565b979a9699509497509295939492505050565b6000806040838503121561367b57600080fd5b823561368681613dd3565b915060208301356134d181613de8565b600080604083850312156136a957600080fd5b82356136b481613dd3565b946020939093013593505050565b600080600080606085870312156136d857600080fd5b84356136e381613dd3565b93506020850135925060408501356001600160401b0381111561370557600080fd5b61371187828801613412565b95989497509550505050565b6000806020838503121561373057600080fd5b82356001600160401b0381111561374657600080fd5b613752858286016133ce565b90969095509350505050565b60008060008060006060868803121561377657600080fd5b85356001600160401b038082111561378d57600080fd5b61379989838a016133ce565b90975095508591506137ad60208901613453565b945060408801359150808211156137c357600080fd5b506137d088828901613412565b969995985093965092949392505050565b6000602082840312156137f357600080fd5b81516122a881613de8565b60006020828403121561381057600080fd5b81356122a881613df6565b60006020828403121561382d57600080fd5b81516122a881613df6565b6000806020838503121561384b57600080fd5b82356001600160401b0381111561386157600080fd5b61375285828601613412565b6000806000806060858703121561388357600080fd5b84356001600160401b038082111561389a57600080fd5b6138a688838901613412565b9096509450602087810135945091506040870135818111156138c757600080fd5b8701601f810189136138d857600080fd5b8035828111156138ea576138ea613dbd565b8060051b92506138fb848401613c10565b8181528481019083860185850187018d101561391657600080fd5b600095505b8386101561393957803583526001959095019491860191860161391b565b50989b979a50959850505050505050565b60006020828403121561395c57600080fd5b5035919050565b6000806000806080858703121561397957600080fd5b84359350602085013561398b81613dd3565b92506040850135915060608501356139a281613de8565b939692955090935050565b600080604083850312156139c057600080fd5b823591506139d060208401613453565b90509250929050565b600081518084526139f1816020860160208601613ca2565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff198460601b168152826014820152600060048310613a4057634e487b7160e01b600052602160045260246000fd5b5060f89190911b603482015260350192915050565b60006001600160fb1b03831115613a6b57600080fd5b8260051b80858437600092019182525092915050565b8183823760009101908152919050565b60008351613aa3818460208801613ca2565b835190830190613ab7818360208801613ca2565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613af3908301846139d9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613b3e5783516001600160a01b031683529284019291840191600101613b19565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613b3e57835183529284019291840191600101613b66565b6020815260006122a860208301846139d9565b6020808252600e908201526d131a5b5a5d08195e18d95959195960921b604082015260600190565b6020808252601690820152754e6f7420706179696e6720656e6f756768206665657360501b604082015260600190565b602080825260099082015268536f6c64206f75742160b81b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715613c3857613c38613dbd565b604052919050565b60008219821115613c5357613c53613d4f565b500190565b600082613c6757613c67613d65565b500490565b6000816000190483118215151615613c8657613c86613d4f565b500290565b600082821015613c9d57613c9d613d4f565b500390565b60005b83811015613cbd578181015183820152602001613ca5565b838111156119705750506000910152565b600081613cdd57613cdd613d4f565b506000190190565b600181811c90821680613cf957607f821691505b60208210811415613d1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d3457613d34613d4f565b5060010190565b600082613d4a57613d4a613d65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461126f57600080fd5b801515811461126f57600080fd5b6001600160e01b03198116811461126f57600080fdfea26469706673582212200442e9913461729be3308b3cf560f0a49b9028ffb83ac7f9a59ed95190243c4e64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e31306b776f726c646375702e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseTokenUri (string): https://api.10kworldcup.com/metadata/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [2] : 68747470733a2f2f6170692e31306b776f726c646375702e636f6d2f6d657461
Arg [3] : 646174612f000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
1662:15351:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4530:1226;;;;;;:::i;:::-;;:::i;:::-;;9155:630:9;;;;;;;;;;-1:-1:-1;9155:630:9;;;;;:::i;:::-;;:::i;:::-;;;16250:14:11;;16243:22;16225:41;;16213:2;16198:18;9155:630:9;;;;;;;;2396:84:8;;;;;;;;;;-1:-1:-1;2396:84:8;;;;-1:-1:-1;;;;;2396:84:8;;;;;;-1:-1:-1;;;;;14248:32:11;;;14230:51;;14218:2;14203:18;2396:84:8;14084:203:11;10039:98:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16360:214::-;;;;;;;;;;-1:-1:-1;16360:214:9;;;;;:::i;:::-;;:::i;15833:235:8:-;;;;;;:::i;:::-;;:::i;2029:28::-;;;;;;;;;;;;;;;;;;;26570:25:11;;;26558:2;26543:18;2029:28:8;26424:177:11;5894:317:9;;;;;;;;;;;;;:::i;8088:117:8:-;;;;;;;;;;-1:-1:-1;8088:117:8;;;;;:::i;:::-;-1:-1:-1;;;;;8168:25:8;8145:4;8168:25;;;:20;:25;;;;;;:30;;;8088:117;1958:32;;;;;;;;;;;;;;;;14674:112;;;;;;;;;;-1:-1:-1;14674:112:8;;;;;:::i;:::-;;:::i;19903:2764:9:-;;;;;;:::i;:::-;;:::i;14948:102:8:-;;;;;;;;;;-1:-1:-1;14948:102:8;;;;;:::i;:::-;;:::i;1814:46::-;;;;;;;;;;;;1849:11;1814:46;;1766:42;;;;;;;;;;;;1803:5;1766:42;;14092:162;;;;;;;;;;-1:-1:-1;14092:162:8;;;;;:::i;:::-;;:::i;15619:207::-;;;;;;;;;;;;;:::i;22758:187:9:-;;;;;;:::i;:::-;;:::i;14368:168:8:-;;;;;;;;;;-1:-1:-1;14368:168:8;;;;;:::i;:::-;;:::i;1918:34::-;;;;;;;;;;;;;;;;9661:323;;;;;;;;;;;;;:::i;2141:36::-;;;;;;;;;;;;;;;;11391:150:9;;;;;;;;;;-1:-1:-1;11391:150:9;;;;;:::i;:::-;;:::i;13843:106:8:-;;;;;;;;;;-1:-1:-1;13931:11:8;;;;13843:106;;7045:230:9;;;;;;;;;;-1:-1:-1;7045:230:9;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;9990:684:8:-;;;;;;;;;;;;;:::i;3101:18::-;;;;;;;;;;-1:-1:-1;3101:18:8;;;;;;;;;;;;;;;;;;;26837:25:11;;;26893:2;26878:18;;26871:34;;;;26921:18;;;26914:34;26979:2;26964:18;;26957:34;26824:3;26809:19;3101:18:8;26606:391:11;1996:27:8;;;;;;;;;;;;;;;;2315:75;;;;;;;;;;-1:-1:-1;2315:75:8;;;;-1:-1:-1;;;;;2315:75:8;;;15056:172;;;;;;;;;;-1:-1:-1;15056:172:8;;;;;:::i;:::-;;:::i;2578:59::-;;;;;;;;;;-1:-1:-1;2578:59:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;2282:27;;;;;;;;;;-1:-1:-1;2282:27:8;;;;-1:-1:-1;;;;;2282:27:8;;;1201:85:0;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;8449:1206:8;;;;;;;;;;-1:-1:-1;8449:1206:8;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3811:713::-;;;;;;:::i;:::-;;:::i;10208:102:9:-;;;;;;;;;;;;;:::i;2102:33:8:-;;;;;;;;;;;;;;;;2723:55;;;;;;;;;;-1:-1:-1;2723:55:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;14260:102;;;;;;;;;;-1:-1:-1;14260:102:8;;;;;:::i;:::-;;:::i;14792:150::-;;;;;;;;;;-1:-1:-1;14792:150:8;;;;;:::i;:::-;;:::i;16074:290::-;;;;;;;;;;-1:-1:-1;16074:290:8;;;;;:::i;:::-;;:::i;6928:370::-;;;;;;;;;;-1:-1:-1;6928:370:8;;;;;:::i;:::-;;:::i;10715:2742::-;;;;;;;;;;-1:-1:-1;10715:2742:8;;;;;:::i;:::-;;:::i;1866:46::-;;;;;;;;;;;;1902:10;1866:46;;23526:396:9;;;;;;:::i;:::-;;:::i;3275:30:8:-;;;;;;;;;;-1:-1:-1;3275:30:8;;;;;;;;;;;;;;;16479:435;;;;;;;;;;-1:-1:-1;16479:435:8;;;;;:::i;:::-;;:::i;2643:74::-;;;;;;;;;;-1:-1:-1;2643:74:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2183:26;;;;;;;;;;;;;:::i;5762:1160::-;;;;;;:::i;:::-;;:::i;2063:33::-;;;;;;;;;;;;;;;;13955:131;;;;;;;;;;-1:-1:-1;13955:131:8;;;;;:::i;:::-;;:::i;2487:42::-;;;;;;;;;;-1:-1:-1;2487:42:8;;;;;:::i;:::-;;;;;;;;;;;;;;2237:39;;;;;;;;;;;;;;;;17282:162:9;;;;;;;;;;-1:-1:-1;17282:162:9;;;;;:::i;:::-;-1:-1:-1;;;;;17402:25:9;;;17379:4;17402:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17282:162;8334:109:8;;;;;;;;;;-1:-1:-1;8404:13:8;:32;8334:109;;7304:778;;;;;;;;;;-1:-1:-1;7304:778:8;;;;;:::i;:::-;;:::i;2081:198:0:-;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;13654:183:8:-;;;;;;;;;;-1:-1:-1;13654:183:8;;;;;:::i;:::-;13782:4;13809:21;;;:12;:21;;;;;;;;;13654:183;8211:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;14542:126::-;;;;;;;;;;-1:-1:-1;14542:126:8;;;;;:::i;:::-;;:::i;13463:185::-;;;;;;;;;;-1:-1:-1;13463:185:8;;;;;:::i;:::-;13584:4;13611:21;;;:12;:21;;;;;;;;:30;;13463:185;4530:1226;1803:5;4730:6;4714:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;4706:58;;;;-1:-1:-1;;;4706:58:8;;;;;;;:::i;:::-;;;;;;;;;4795:17;1849:11;4795:6;:17;:::i;:::-;4782:9;:30;;4774:65;;;;-1:-1:-1;;;4774:65:8;;;;;;;:::i;:::-;5005:15;;4870:131;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5005:15:8;;;;4870:131;;4990:10;;;;;;4870:131;;4990:10;;;;4870:131;;;;;;;;;-1:-1:-1;;4880:41:8;;4870:94;;-1:-1:-1;4880:41:8;;-1:-1:-1;4897:6:8;;4905;;4913:7;;4880:41;;;:::i;:::-;;;;;;;;;;;;;4870:52;;;;;;:92;:94::i;:::-;:119;;:131::i;:::-;-1:-1:-1;;;;;4870:150:8;;4849:224;;;;-1:-1:-1;;;4849:224:8;;19272:2:11;4849:224:8;;;19254:21:11;19311:2;19291:18;;;19284:30;19350:29;19330:18;;;19323:57;19397:18;;4849:224:8;19070:351:11;4849:224:8;5099:16;5088:7;:27;;;;;;;;:::i;:::-;;5084:569;;;5184:15;;-1:-1:-1;;;;;5156:15:8;;;;;;:7;:15;;;;;;:24;;5174:6;;5156:24;:::i;:::-;:43;;5131:116;;;;-1:-1:-1;;;5131:116:8;;;;;;;:::i;:::-;5084:569;;;5279:14;5268:7;:25;;;;;;;;:::i;:::-;;5264:389;;;5362:13;;-1:-1:-1;;;;;5334:15:8;;;;;;:7;:15;;;;;;:24;;5352:6;;5334:24;:::i;5264:389::-;5455:14;5444:7;:25;;;;;;;;:::i;:::-;;5440:213;;;5521:8;;-1:-1:-1;;;;;5493:15:8;;;;;;:7;:15;;;;;;:24;;5511:6;;5493:24;:::i;5440:213::-;5615:8;;-1:-1:-1;;;;;5587:15:8;;;;;;:7;:15;;;;;;:24;;5605:6;;5587:24;:::i;:::-;:36;;5579:63;;;;-1:-1:-1;;;5579:63:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;5687:15:8;;;;;;:7;:15;;;;;:25;;;;;;5732:17;5738:2;5706:6;5732:5;:17::i;:::-;4530:1226;;;;;;:::o;9155:630:9:-;9240:4;-1:-1:-1;;;;;;;;;9558:25:9;;;;:101;;-1:-1:-1;;;;;;;;;;9634:25:9;;;9558:101;:177;;;-1:-1:-1;;;;;;;;;;9710:25:9;;;9558:177;9539:196;9155:630;-1:-1:-1;;9155:630:9:o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;-1:-1:-1;;;16485:34:9;;;;;;;;;;;16455:64;-1:-1:-1;16537:24:9;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16537:30:9;;16360:214::o;15833:235:8:-;-1:-1:-1;;;;;15966:27:8;;;;;;:23;:27;;;;;;;;15965:28;15957:68;;;;-1:-1:-1;;;15957:68:8;;25222:2:11;15957:68:8;;;25204:21:11;25261:2;25241:18;;;25234:30;25300:29;25280:18;;;25273:57;25347:18;;15957:68:8;25020:351:11;15957:68:8;16035:26;16049:2;16053:7;16035:13;:26::i;:::-;15833:235;;:::o;5894:317:9:-;17003:1:8;6164:12:9;5955:7;6148:13;:28;-1:-1:-1;;6148:46:9;;5894:317::o;14674:112:8:-;1094:13:0;:11;:13::i;:::-;14751:12:8::1;:28:::0;;-1:-1:-1;;;;;;14751:28:8::1;-1:-1:-1::0;;;;;14751:28:8;;;::::1;::::0;;;::::1;::::0;;14674:112::o;19903:2764:9:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;-1:-1:-1;;;;;20112:45:9;20128:19;-1:-1:-1;;;;;20112:45:9;;20108:86;;20166:28;;-1:-1:-1;;;20166:28:9;;;;;;;;;;;20108:86;20206:27;19036:24;;;:15;:24;;;;;19260:26;;39523:10;18673:30;;;-1:-1:-1;;;;;18370:28:9;;18651:20;;;18648:56;20389:179;;20481:43;20498:4;39523:10;17282:162;:::i;20481:43::-;20476:92;;20533:35;;-1:-1:-1;;;20533:35:9;;;;;;;;;;;20476:92;-1:-1:-1;;;;;20583:16:9;;20579:52;;20608:23;;-1:-1:-1;;;20608:23:9;;;;;;;;;;;20579:52;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;-1:-1:-1;;;;;21300:24:9;;;;;;;:18;:24;;;;;;21298:26;;-1:-1:-1;;21298:26:9;;;21368:22;;;;;;;;;21366:24;;-1:-1:-1;21366:24:9;;;14703:11;14678:23;14674:41;14661:63;-1:-1:-1;;;14661:63:9;21654:26;;;;:17;:26;;;;;:172;-1:-1:-1;;;21943:47:9;;21939:617;;22047:1;22037:11;;22015:19;22168:30;;;:17;:30;;;;;;22164:378;;22304:13;;22289:11;:28;22285:239;;22449:30;;;;:17;:30;;;;;:52;;;22285:239;21997:559;21939:617;22600:7;22596:2;-1:-1:-1;;;;;22581:27:9;22590:4;-1:-1:-1;;;;;22581:27:9;;;;;;;;;;;22618:42;3811:713:8;14948:102;1094:13:0;:11;:13::i;:::-;15024:19:8::1;:12;15039:4:::0;;15024:19:::1;:::i;:::-;;14948:102:::0;;:::o;14092:162::-;1094:13:0;:11;:13::i;:::-;14203:21:8::1;:44:::0;14092:162::o;15619:207::-;1094:13:0;:11;:13::i;:::-;15710:11:8::1;:22:::0;15687:50:::1;::::0;15669:12:::1;::::0;15687:10:::1;::::0;15669:12;15687:50;15669:12;15687:50;15710:22;15687:10;:50:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;15772:1:8::1;15747:11;:26:::0;15668:69;-1:-1:-1;15668:69:8;15783:36:::1;;;::::0;-1:-1:-1;;;15783:36:8;;24534:2:11;15783:36:8::1;::::0;::::1;24516:21:11::0;24573:2;24553:18;;;24546:30;-1:-1:-1;;;24592:18:11;;;24585:46;24648:18;;15783:36:8::1;24332:340:11::0;15783:36:8::1;15658:168;15619:207::o:0;22758:187:9:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;14368:168:8:-;1094:13:0;:11;:13::i;:::-;1803:5:8::1;14468:6;14452:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;14444:58;;;;-1:-1:-1::0;;;14444:58:8::1;;;;;;;:::i;:::-;14512:17;14518:2;14522:6;14512:5;:17::i;9661:323::-:0;1094:13:0;:11;:13::i;:::-;9799:25:8;;9759;;:65:::1;::::0;9799:25;9759:65:::1;:::i;:::-;9719:25:::0;:105;;;9862:1:::1;9834:25:::0;:29;;;9873:19;:47;;;;9930:19;:47;9661:323::o;11391:150:9:-;11463:7;11505:27;11524:7;11505:18;:27::i;7045:230::-;7117:7;-1:-1:-1;;;;;7140:19:9;;7136:60;;7168:28;;-1:-1:-1;;;7168:28:9;;;;;;;;;;;7136:60;-1:-1:-1;;;;;;7213:25:9;;;;;:18;:25;;;;;;-1:-1:-1;;;;;7213:55:9;;7045:230::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;9990:684:8:-;1094:13:0;:11;:13::i;:::-;10071:269:8::1;;;;;;;;10134:3;10104:21;10128:2;10104:26;;;;:::i;:::-;10103:34;;;;:::i;:::-;10071:269:::0;;::::1;;10197:3;10167:26;:21;10191:2;10167:26;:::i;:::-;10166:34;;;;:::i;:::-;10071:269:::0;;::::1;;10260:3;10230:26;:21;10254:2;10230:26;:::i;:::-;10229:34;;;;:::i;:::-;10071:269:::0;;::::1;;10326:3;10296:26;:21;10320:2;10296:26;:::i;:::-;10295:34;;;;:::i;:::-;10071:269:::0;;10063:277;;:5:::1;:277:::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;10364:275;;::::1;::::0;::::1;::::0;;;;10433:3:::1;10403:26;:21;10427:2;10403:26;:::i;:::-;10402:34;;;;:::i;:::-;10364:275:::0;;::::1;;10496:3;10466:26;:21;10490:2;10466:26;:::i;:::-;10465:34;;;;:::i;:::-;10364:275:::0;;::::1;;10559:3;10529:26;:21;10553:2;10529:26;:::i;:::-;10528:34;;;;:::i;:::-;10364:275:::0;;::::1;;10625:3;10595:26;:21;10619:2;10595:26;:::i;:::-;10594:34;;;;:::i;:::-;10364:275:::0;;10350:289;;:11:::1;:289:::0;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;;::::0;;;10649:11:::1;:18:::0;;-1:-1:-1;;10649:18:8::1;10350:289;10649:18;::::0;;9990:684::o;15056:172::-;1094:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;15175:31:8;;;::::1;;::::0;;;:23:::1;:31;::::0;;;;:46;;-1:-1:-1;;15175:46:8::1;::::0;::::1;;::::0;;;::::1;::::0;;15056:172::o;8449:1206::-;8600:30;1094:13:0;:11;:13::i;:::-;8642:30:8::1;8689:6;-1:-1:-1::0;;;;;8675:21:8::1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;8675:21:8::1;;8642:54;;8706:31;8754:6;-1:-1:-1::0;;;;;8740:21:8::1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;8740:21:8::1;-1:-1:-1::0;8787:15:8;;8706:55;;-1:-1:-1;8771:13:8::1;8812:756;8836:6;8832:1;:10;8812:756;;;9039:15:::0;;8962:251:::1;::::0;;::::1;::::0;::::1;13876:19:11::0;;;13911:12;;;13904:28;;;;9084:15:8::1;13948:12:11::0;;;13941:28;9129:16:8::1;13985:12:11::0;;;13978:28;9175:12:8::1;14022:13:11::0;;;14015:29;9272:5:8;;14060:13:11;;8962:251:8::1;;;;;;;;;;;;8927:308;;;;;;8898:355;;:379;;;;:::i;:::-;8863:13;8877:1;8863:16;;;;;;;;:::i;:::-;;;;;;:414;;;::::0;::::1;9311:8;9320:13;9334:1;9320:16;;;;;;;;:::i;:::-;;;;;;;9311:26;;;;;;;;:::i;:::-;;;;;;;9291:14;9306:1;9291:17;;;;;;;;:::i;:::-;;;;;;:46;;;::::0;::::1;9351:19;9373:8;9404:1;9400;9382:8;:15;:19;;;;:::i;:::-;:23;;;;:::i;:::-;9373:33;;;;;;;;:::i;:::-;;;;;;;9351:55;;9456:8;9465:13;9479:1;9465:16;;;;;;;;:::i;:::-;;;;;;;9456:26;;;;;;;;:::i;:::-;;;;;;;9420:8;9451:1;9447;9429:8;:15;:19;;;;:::i;:::-;:23;;;;:::i;:::-;9420:33;;;;;;;;:::i;:::-;;;;;;:62;;;::::0;::::1;9525:11;9496:8;9505:13;9519:1;9505:16;;;;;;;;:::i;:::-;;;;;;;9496:26;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:40;9550:7;::::1;::::0;::::1;:::i;:::-;;;;8849:719;8844:3;;;;;:::i;:::-;;;;8812:756;;;;9593:7;;9582:35;;;;;;;:::i;:::-;;;;;;;;;9602:14;9582:35;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;9634:14:8;-1:-1:-1;;1117:1:0::1;8449:1206:8::0;;;;;;:::o;3811:713::-;3964:11;;3945:15;:30;;3937:61;;;;-1:-1:-1;;;3937:61:8;;20728:2:11;3937:61:8;;;20710:21:11;20767:2;20747:18;;;20740:30;-1:-1:-1;;;20786:18:11;;;20779:48;20844:18;;3937:61:8;20526:342:11;3937:61:8;1803:5;4032:6;4016:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;4008:58;;;;-1:-1:-1;;;4008:58:8;;;;;;;:::i;:::-;4108:14;;-1:-1:-1;;;;;4084:11:8;;;;;;:7;:11;;;;;;:20;;4098:6;;4084:20;:::i;:::-;:38;;4076:65;;;;-1:-1:-1;;;4076:65:8;;;;;;;:::i;:::-;4172:18;1902:10;4172:6;:18;:::i;:::-;4159:9;:31;;4151:66;;;;-1:-1:-1;;;4151:66:8;;;;;;;:::i;:::-;4370:15;;4248:118;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4370:15:8;;;;4248:118;;4355:10;;;;;;4248:118;;4355:10;;;;4248:118;;;;;;;;;-1:-1:-1;;4258:28:8;;-1:-1:-1;;10770:2:11;10766:15;;;10762:53;4258:28:8;;;10750:66:11;10832:12;;;10825:28;;;4248:81:8;;-1:-1:-1;10869:12:11;;;-1:-1:-1;4258:28:8;10593:294:11;4248:118:8;-1:-1:-1;;;;;4248:137:8;;4227:198;;;;-1:-1:-1;;;4227:198:8;;24879:2:11;4227:198:8;;;24861:21:11;24918:2;24898:18;;;24891:30;-1:-1:-1;;;24937:18:11;;;24930:44;24991:18;;4227:198:8;24677:338:11;4227:198:8;-1:-1:-1;;;;;4459:11:8;;;;;;:7;:11;;;;;:21;;;;;;4500:17;4467:2;4474:6;4500:5;:17::i;:::-;3811:713;;;;:::o;10208:102:9:-;10264:13;10296:7;10289:14;;;;;:::i;14260:102:8:-;1094:13:0;:11;:13::i;:::-;14332:11:8::1;:23:::0;14260:102::o;14792:150::-;1094:13:0;:11;:13::i;:::-;14899:16:8::1;:36:::0;;-1:-1:-1;;;;;;14899:36:8::1;-1:-1:-1::0;;;;;14899:36:8;;;::::1;::::0;;;::::1;::::0;;14792:150::o;16074:290::-;-1:-1:-1;;;;;16218:33:8;;;;;;:23;:33;;;;;;;;16217:34;16196:108;;;;-1:-1:-1;;;16196:108:8;;25222:2:11;16196:108:8;;;25204:21:11;25261:2;25241:18;;;25234:30;25300:29;25280:18;;;25273:57;25347:18;;16196:108:8;25020:351:11;16196:108:8;16314:43;16338:8;16348;16314:23;:43::i;6928:370::-;1094:13:0;:11;:13::i;:::-;7003:9:8::1;6998:294;7018:15:::0;;::::1;6998:294;;;7059:4;:16;7076:4:::0;;7081:1;7076:7;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;7059:25;::::0;-1:-1:-1;;;;;;7059:25:8::1;::::0;;;;;;-1:-1:-1;;;;;14248:32:11;;;7059:25:8::1;::::0;::::1;14230:51:11::0;14203:18;;7059:25:8::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7054:228;;7104:13;7135:4:::0;;7140:1;7135:7;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;7104:39:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;7104:39:8;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;7104:39:8::1;-1:-1:-1::0;;;;;7104:39:8;;;::::1;::::0;;;::::1;::::0;;7193:13:::1;:74:::0;;7161:20;;7182:4;;7187:1;7182:7;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;7161:29:8::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;7161:29:8;:106;7054:228:::1;7035:3:::0;::::1;::::0;::::1;:::i;:::-;;;;6998:294;;10715:2742:::0;1744:1:1;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:1;;25578:2:11;2317:63:1;;;25560:21:11;25617:2;25597:18;;;25590:30;25656:33;25636:18;;;25629:61;25707:18;;2317:63:1;25376:355:11;2317:63:1;1744:1;2455:7;:18;10901:11:8::1;::::0;::::1;;10893:41;;;::::0;-1:-1:-1;;;10893:41:8;;18926:2:11;10893:41:8::1;::::0;::::1;18908:21:11::0;18965:2;18945:18;;;18938:30;-1:-1:-1;;;18984:18:11;;;18977:47;19041:18;;10893:41:8::1;18724:341:11::0;10893:41:8::1;10965:66;10944:18;11041:697;11061:19:::0;;::::1;11041:697;;;11129:10;11105:20;11113:8:::0;;11122:1;11113:11;;::::1;;;;;:::i;:::-;;;;;;;11105:7;:20::i;:::-;-1:-1:-1::0;;;;;11105:34:8::1;;11101:256;;11202:12;::::0;11269:10:::1;::::0;-1:-1:-1;;;;;11202:12:8::1;11188:40;11229:8:::0;;11238:1;11229:11;;::::1;;;;;:::i;:::-;;;;;;;11188:53;;;;;;;;;;;;;26570:25:11::0;;26558:2;26543:18;;26424:177;11188:53:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11188:91:8::1;;11159:183;;;::::0;-1:-1:-1;;;11159:183:8;;21905:2:11;11159:183:8::1;::::0;::::1;21887:21:11::0;21944:2;21924:18;;;21917:30;-1:-1:-1;;;21963:18:11;;;21956:51;22024:18;;11159:183:8::1;21703:345:11::0;11159:183:8::1;11396:9;:22;11406:8;;11415:1;11406:11;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;;11396:22:::0;;-1:-1:-1;11396:22:8;;::::1;::::0;;;;;;;;-1:-1:-1;11396:22:8;;;:32:::1;::::0;;::::1;::::0;;;;;;::::1;11395:33;11370:127;;;::::0;-1:-1:-1;;;11370:127:8;;22613:2:11;11370:127:8::1;::::0;::::1;22595:21:11::0;22652:2;22632:18;;;22625:30;22691:34;22671:18;;;22664:62;-1:-1:-1;;;22742:18:11;;;22735:33;22785:19;;11370:127:8::1;22411:399:11::0;11370:127:8::1;11546:4;11511:9;:22;11521:8;;11530:1;11521:11;;;;;;;:::i;:::-;;;;;;;11511:22;;;;;;;;;;;:32;11534:8;11511:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;11592:4;11564:12;:25;11577:8;;11586:1;11577:11;;;;;;;:::i;:::-;;;;;;;11564:25;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;11667:10;11679;11691:8;;11700:1;11691:11;;;;;;;:::i;:::-;;;;;;;11704:8;11650:63;;;;;;;;;;12041:19:11::0;;;12098:2;12094:15;;;;-1:-1:-1;;12090:53:11;12085:2;12076:12;;12069:75;12169:2;12160:12;;12153:28;12237:3;12215:16;-1:-1:-1;;;;;;12211:36:11;12206:2;12197:12;;12190:58;12273:2;12264:12;;11832:450;11650:63:8::1;;;;;;;;;;;;;11623:104;;;;;;11610:117;;11082:3;;;;;:::i;:::-;;;;11041:697;;;-1:-1:-1::0;11843:16:8::1;::::0;11768:55:::1;::::0;;::::1;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;-1:-1:-1;;;;;11843:16:8;;::::1;::::0;11768:55:::1;::::0;11812:10;;;;;;11768:55;::::1;11812:10:::0;;;;11768:55;::::1;;::::0;::::1;::::0;;;;-1:-1:-1;11768:35:8::1;::::0;-1:-1:-1;11768:10:8;;-1:-1:-1;11768:33:8::1;::::0;-1:-1:-1;11768:35:8:i:1;:55::-;-1:-1:-1::0;;;;;11768:91:8::1;;11747:173;;;::::0;-1:-1:-1;;;11747:173:8;;19628:2:11;11747:173:8::1;::::0;::::1;19610:21:11::0;19667:2;19647:18;;;19640:30;19706:34;19686:18;;;19679:62;-1:-1:-1;;;19757:18:11;;;19750:33;19800:19;;11747:173:8::1;19426:399:11::0;11747:173:8::1;11935:42;::::0;::::1;11931:480;;12036:21;::::0;12014:19;;11993:18:::1;::::0;12014:43:::1;::::0;::::1;:::i;:::-;12075:25:::0;;11993:64;;-1:-1:-1;12075:29:8;12071:330:::1;;12221:28;12234:8:::0;12221:10;:28:::1;:::i;:::-;12172:25:::0;;:78:::1;::::0;;::::1;:::i;:::-;12124:25:::0;:126;12268:60:::1;12286:10;12299:28;12312:8:::0;12299:10;:28:::1;:::i;:::-;12268:9;:60::i;:::-;12071:330;;;12367:19;::::0;-1:-1:-1;;;12367:19:8;;23017:2:11;12367:19:8::1;::::0;::::1;22999:21:11::0;23056:1;23036:18;;;23029:29;-1:-1:-1;;;23074:18:11;;;23067:39;23123:18;;12367:19:8::1;22815:332:11::0;12071:330:8::1;11979:432;11931:480;12425:42;::::0;::::1;12443:23;12425:42;12421:481;;;12483:18;12547:1;12526:18;;12504:5;:19;;;:40;;;;:::i;:::-;:44;;;;:::i;:::-;12566:25:::0;;12483:65;;-1:-1:-1;12566:29:8;12562:330:::1;;12712:28;12725:8:::0;12712:10;:28:::1;:::i;:::-;12663:25:::0;;:78:::1;::::0;;::::1;:::i;:::-;12615:25:::0;:126;12759:60:::1;12777:10;12790:28;12803:8:::0;12790:10;:28:::1;:::i;12759:60::-;12469:433;12421:481;12916:45;::::0;::::1;12934:26;12916:45;12912:481;;;12977:18;13028:2;13023;12998:5;:22;;;:27;;;;:::i;:::-;:32;;;;:::i;:::-;13048:28:::0;;12977:53;;-1:-1:-1;13048:32:8;13044:339:::1;;13203:28;13216:8:::0;13203:10;:28:::1;:::i;:::-;13151::::0;;:81:::1;::::0;;::::1;:::i;:::-;13100:28:::0;:132;13250:60:::1;13268:10;13281:28;13294:8:::0;13281:10;:28:::1;:::i;13250:60::-;12963:430;12912:481;13441:8;13408:42;;13431:8;;13408:42;;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;13419:10:::1;::::0;13408:42:::1;::::0;;;::::1;-1:-1:-1::0;;1701:1:1;2628:7;:22;-1:-1:-1;;;;10715:2742:8:o;23526:396:9:-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;-1:-1:-1;;;;;23740:14:9;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;-1:-1:-1;;;23861:40:9;;;;;;;;;;;16479:435:8;16576:13;16626:16;16634:7;16626;:16::i;:::-;16605:110;;;;-1:-1:-1;;;16605:110:8;;24118:2:11;16605:110:8;;;24100:21:11;24157:2;24137:18;;;24130:30;24196:34;24176:18;;;24169:62;-1:-1:-1;;;24247:18:11;;;24240:45;24302:19;;16605:110:8;23916:411:11;16605:110:8;16725:21;16749:10;:8;:10::i;:::-;16725:34;;16794:7;16788:21;16813:1;16788:26;;:119;;;;;;;;;;;;;;;;;16857:7;16866:18;16876:7;16866:9;:18::i;:::-;16840:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16788:119;16769:138;16479:435;-1:-1:-1;;;16479:435:8:o;2183:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5762:1160::-;5915:10;5939:13;5935:171;;;5973:53;;-1:-1:-1;;;5973:53:8;;;;;26570:25:11;;;-1:-1:-1;;;;;5973:41:8;;;;;26543:18:11;;5973:53:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5968:58;;5935:171;;;6062:33;;-1:-1:-1;;;6062:33:8;;;;;26570:25:11;;;-1:-1:-1;;;;;6062:21:8;;;;;26543:18:11;;6062:33:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6057:38;;5935:171;-1:-1:-1;;;;;6124:16:8;;6116:51;;;;-1:-1:-1;;;6116:51:8;;17459:2:11;6116:51:8;;;17441:21:11;17498:2;17478:18;;;17471:30;-1:-1:-1;;;17517:18:11;;;17510:52;17579:18;;6116:51:8;17257:346:11;6116:51:8;-1:-1:-1;;;;;6201:24:8;;;6177:21;6201:24;;;:19;:24;;;;;;;;:36;;;;;;;;;6272:11;;;;;:7;:11;;;;;;6340:9;;6314:22;6330:6;6201:36;6314:22;:::i;:::-;:35;;6293:106;;;;-1:-1:-1;;;6293:106:8;;20032:2:11;6293:106:8;;;20014:21:11;20071:2;20051:18;;;20044:30;20110:26;20090:18;;;20083:54;20154:18;;6293:106:8;19830:348:11;6293:106:8;6417:21;;-1:-1:-1;;;6417:21:8;;-1:-1:-1;;;;;14248:32:11;;6417:21:8;;;14230:51:11;6417:4:8;;:16;;14203:18:11;;6417:21:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6409:54;;;;-1:-1:-1;;;6409:54:8;;18170:2:11;6409:54:8;;;18152:21:11;18209:2;18189:18;;;18182:30;-1:-1:-1;;;18228:18:11;;;18221:50;18288:18;;6409:54:8;17968:344:11;6409:54:8;6508:9;;6481:23;6498:6;6481:14;:23;:::i;:::-;:36;;6473:63;;;;-1:-1:-1;;;6473:63:8;;;;;;;:::i;:::-;1803:5;6570:6;6554:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;6546:58;;;;-1:-1:-1;;;6546:58:8;;;;;;;:::i;:::-;6635:17;1849:11;6635:6;:17;:::i;:::-;6622:9;:30;;6614:65;;;;-1:-1:-1;;;6614:65:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;6713:11:8;;;;;;;:7;:11;;;;;;;;6727:23;;;6713:37;;6764:24;;;;;:19;:24;;;;;:36;;;;;;6803:22;;;6764:61;;6845:17;6721:2;6744:6;6845:5;:17::i;:::-;6899:3;-1:-1:-1;;;;;6877:38:8;6891:6;6887:2;-1:-1:-1;;;;;6877:38:8;;6904:10;6877:38;;;;26570:25:11;;26558:2;26543:18;;26424:177;6877:38:8;;;;;;;;5905:1017;;;5762:1160;;;;:::o;13955:131::-;1094:13:0;:11;:13::i;:::-;14039:18:8::1;:40:::0;13955:131::o;7304:778::-;1094:13:0;:11;:13::i;:::-;7382:9:8::1;7377:699;7397:15:::0;;::::1;7377:699;;;7433:20;7456::::0;7433;7477:4;;7482:1;7477:7;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;7456:29:8::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;7456:29:8;;;-1:-1:-1;7503:17:8;;7499:567:::1;;7540:21;7564:16;7579:1;7564:12:::0;:16:::1;:::i;:::-;7618:13;:32:::0;7540:40;;-1:-1:-1;7598:17:8::1;::::0;7618:36:::1;::::0;7653:1:::1;::::0;7618:36:::1;:::i;:::-;7598:56;;7689:13;7676:9;:26;7672:277;;7726:19;7748:13;:25;;7774:9;7748:36;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;7806:13:::1;:40:::0;;-1:-1:-1;;;;;7748:36:8;;::::1;::::0;-1:-1:-1;7748:36:8;;7832:13;;7806:40;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:54:::0;;-1:-1:-1;;;;;;7806:54:8::1;-1:-1:-1::0;;;;;7806:54:8;;::::1;;::::0;;7882:33;;;::::1;::::0;;:20;:33;;;;;;:48;;;7672:277:::1;7966:13;:31:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;7966:31:8;;;;;-1:-1:-1;;;;;;7966:31:8::1;::::0;;;;;;;;8022:20;;8043:4;;8048:1;8043:7;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;8022:29:8::1;-1:-1:-1::0;;;;;8022:29:8::1;;;;;;;;;;;;8015:36;;;7522:544;;7499:567;-1:-1:-1::0;7414:3:8;::::1;::::0;::::1;:::i;:::-;;;;7377:699;;2081:198:0::0;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;18519:2:11;2161:73:0::1;::::0;::::1;18501:21:11::0;18558:2;18538:18;;;18531:30;18597:34;18577:18;;;18570:62;-1:-1:-1;;;18648:18:11;;;18641:36;18694:19;;2161:73:0::1;18317:402:11::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;8211:117:8:-:0;8261:16;8296:13;:25;;8289:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8289:32:8;;;;;;;;;;;;;;;;;;;;;;8211:117;:::o;14542:126::-;1094:13:0;:11;:13::i;:::-;14627:15:8::1;:34:::0;;-1:-1:-1;;;;;;14627:34:8::1;-1:-1:-1::0;;;;;14627:34:8;;;::::1;::::0;;;::::1;::::0;;14542:126::o;8012:265:4:-;8211:58;;13282:66:11;8211:58:4;;;13270:79:11;13365:12;;;13358:28;;;8081:7:4;;13402:12:11;;8211:58:4;;;;;;;;;;;;8201:69;;;;;;8194:76;;8012:265;;;:::o;4308:227::-;4386:7;4406:17;4425:18;4447:27;4458:4;4464:9;4447:10;:27::i;:::-;4405:69;;;;4484:18;4496:5;4484:11;:18::i;:::-;-1:-1:-1;4519:9:4;4308:227;-1:-1:-1;;;4308:227:4:o;27091:2902:9:-;27163:20;27186:13;27213;27209:44;;27235:18;;-1:-1:-1;;;27235:18:9;;;;;;;;;;;27209:44;-1:-1:-1;;;;;27728:22:9;;;;;;:18;:22;;;;1495:2;27728:22;;;:71;;27766:32;27754:45;;27728:71;;;28035:31;;;:17;:31;;;;;-1:-1:-1;15123:15:9;;15097:24;15093:46;14703:11;14678:23;14674:41;14671:52;14661:63;;28035:170;;28264:23;;;;28035:31;;27728:22;;29016:25;27728:22;;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29599:15;29461:339;;;-1:-1:-1;29831:13:9;29827:45;;29853:19;;-1:-1:-1;;;29853:19:9;;;;;;;;;;;29827:45;29887:13;:19;-1:-1:-1;15024:19:8::1;14948:102:::0;;:::o;17693:277:9:-;17758:4;17812:7;17003:1:8;17793:26:9;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;-1:-1:-1;;17895:26:9;;;;:17;:26;;;;;;-1:-1:-1;;;17895:44:9;:49;;17693:277::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;-1:-1:-1;39523:10:9;-1:-1:-1;;;;;15947:28:9;;;15943:172;;15994:44;16011:5;39523:10;17282:162;:::i;15994:44::-;15989:126;;16065:35;;-1:-1:-1;;;16065:35:9;;;;;;;;;;;15989:126;16125:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16125:35:9;-1:-1:-1;;;;;16125:35:9;;;;;;;;;16175:28;;16125:24;;16175:28;;;;;;;15890:320;15812:398;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;39523:10:9;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;23757:2:11;1414:68:0;;;23739:21:11;;;23776:18;;;23769:30;23835:34;23815:18;;;23808:62;23887:18;;1414:68:0;23555:356:11;12515:1249:9;12582:7;12616;;17003:1:8;12662:23:9;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:23;;;:17;:23;;;;;;-1:-1:-1;;;12855:24:9;;12851:831;;13510:111;13517:11;13510:111;;-1:-1:-1;;;13587:6:9;13569:25;;;;:17;:25;;;;;;13510:111;;12851:831;12729:971;12703:997;13726:31;;-1:-1:-1;;;13726:31:9;;;;;;;;;;;2433:187:0;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;16901:231:9:-;39523:10;16995:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;16995:49:9;;;;;;;;;;;;:60;;-1:-1:-1;;16995:60:9;;;;;;;;;;17070:55;;16225:41:11;;;16995:49:9;;39523:10;17070:55;;16198:18:11;17070:55:9;;;;;;;16901:231;;:::o;15234:379:8:-;15361:6;15336:21;:31;;15315:107;;;;-1:-1:-1;;;15315:107:8;;22255:2:11;15315:107:8;;;22237:21:11;22294:2;22274:18;;;22267:30;22333:31;22313:18;;;22306:59;22382:18;;15315:107:8;22053:353:11;15315:107:8;15433:12;15451:9;-1:-1:-1;;;;;15451:14:8;15473:6;15451:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15432:52;;;15515:7;15494:112;;;;-1:-1:-1;;;15494:112:8;;21075:2:11;15494:112:8;;;21057:21:11;21114:2;21094:18;;;21087:30;21153:34;21133:18;;;21126:62;21224:28;21204:18;;;21197:56;21270:19;;15494:112:8;20873:422:11;25948:697:9;26126:88;;-1:-1:-1;;;26126:88:9;;26106:4;;-1:-1:-1;;;;;26126:45:9;;;;;:88;;39523:10;;26193:4;;26199:7;;26208:5;;26126:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26126:88:9;;;;;;;;-1:-1:-1;;26126:88:9;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26404:13:9;;26400:229;;26449:40;;-1:-1:-1;;;26449:40:9;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;-1:-1:-1;;;;;;26282:64:9;-1:-1:-1;;;26282:64:9;;-1:-1:-1;26275:71:9;;16370:103:8;16422:13;16454:12;16447:19;;;;;:::i;39637:1708:9:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41005:13;;;41070:25;;41088:5;;41070:25;40690:419;;;-1:-1:-1;41137:13:9;;;-1:-1:-1;;41250:14:9;;;41310:19;;;41250:14;39637:1708;-1:-1:-1;39637:1708:9:o;2243:1279:4:-;2324:7;2333:12;2554:9;:16;2574:2;2554:22;2550:966;;;2843:4;2828:20;;2822:27;2892:4;2877:20;;2871:27;2949:4;2934:20;;2928:27;2592:9;2920:36;2990:25;3001:4;2920:36;2822:27;2871;2990:10;:25::i;:::-;2983:32;;;;;;;;;2550:966;3036:9;:16;3056:2;3036:22;3032:484;;;3305:4;3290:20;;3284:27;3355:4;3340:20;;3334:27;3395:23;3406:4;3284:27;3334;3395:10;:23::i;:::-;3388:30;;;;;;;;3032:484;-1:-1:-1;3465:1:4;;-1:-1:-1;3469:35:4;3032:484;2243:1279;;;;;:::o;548:631::-;625:20;616:5;:29;;;;;;;;:::i;:::-;;612:561;;;548:631;:::o;612:561::-;721:29;712:5;:38;;;;;;;;:::i;:::-;;708:465;;;766:34;;-1:-1:-1;;;766:34:4;;17106:2:11;766:34:4;;;17088:21:11;17145:2;17125:18;;;17118:30;17184:26;17164:18;;;17157:54;17228:18;;766:34:4;16904:348:11;708:465:4;830:35;821:5;:44;;;;;;;;:::i;:::-;;817:356;;;881:41;;-1:-1:-1;;;881:41:4;;17810:2:11;881:41:4;;;17792:21:11;17849:2;17829:18;;;17822:30;17888:33;17868:18;;;17861:61;17939:18;;881:41:4;17608:355:11;817:356:4;952:30;943:5;:39;;;;;;;;:::i;:::-;;939:234;;;998:44;;-1:-1:-1;;;998:44:4;;21502:2:11;998:44:4;;;21484:21:11;21541:2;21521:18;;;21514:30;21580:34;21560:18;;;21553:62;-1:-1:-1;;;21631:18:11;;;21624:32;21673:19;;998:44:4;21300:398:11;939:234:4;1072:30;1063:5;:39;;;;;;;;:::i;:::-;;1059:114;;;1118:44;;-1:-1:-1;;;1118:44:4;;23354:2:11;1118:44:4;;;23336:21:11;23393:2;23373:18;;;23366:30;23432:34;23412:18;;;23405:62;-1:-1:-1;;;23483:18:11;;;23476:32;23525:19;;1118:44:4;23152:398:11;5716:1603:4;5842:7;;6766:66;6753:79;;6749:161;;;-1:-1:-1;6864:1:4;;-1:-1:-1;6868:30:4;6848:51;;6749:161;6923:1;:7;;6928:2;6923:7;;:18;;;;;6934:1;:7;;6939:2;6934:7;;6923:18;6919:100;;;-1:-1:-1;6973:1:4;;-1:-1:-1;6977:30:4;6957:51;;6919:100;7130:24;;;7113:14;7130:24;;;;;;;;;16504:25:11;;;16577:4;16565:17;;16545:18;;;16538:45;;;;16599:18;;;16592:34;;;16642:18;;;16635:34;;;7130:24:4;;16476:19:11;;7130:24:4;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7130:24:4;;-1:-1:-1;;7130:24:4;;;-1:-1:-1;;;;;;;7168:20:4;;7164:101;;7220:1;7224:29;7204:50;;;;;;;7164:101;7283:6;-1:-1:-1;7291:20:4;;-1:-1:-1;5716:1603:4;;;;;;;;:::o;4789:336::-;4899:7;;-1:-1:-1;;;;;4944:80:4;;4899:7;5050:25;5066:3;5051:18;;;5073:2;5050:25;:::i;:::-;5034:42;;5093:25;5104:4;5110:1;5113;5116;5093:10;:25::i;:::-;5086:32;;;;;;4789:336;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:367:11;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:11;;-1:-1:-1;;;;;214:30:11;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;386:347;437:8;447:6;501:3;494:4;486:6;482:17;478:27;468:55;;519:1;516;509:12;468:55;-1:-1:-1;542:20:11;;-1:-1:-1;;;;;574:30:11;;571:50;;;617:1;614;607:12;571:50;654:4;646:6;642:17;630:29;;706:3;699:4;690:6;682;678:19;674:30;671:39;668:59;;;723:1;720;713:12;738:156;804:20;;864:4;853:16;;843:27;;833:55;;884:1;881;874:12;833:55;738:156;;;:::o;899:247::-;958:6;1011:2;999:9;990:7;986:23;982:32;979:52;;;1027:1;1024;1017:12;979:52;1066:9;1053:23;1085:31;1110:5;1085:31;:::i;1151:251::-;1221:6;1274:2;1262:9;1253:7;1249:23;1245:32;1242:52;;;1290:1;1287;1280:12;1242:52;1322:9;1316:16;1341:31;1366:5;1341:31;:::i;1407:388::-;1475:6;1483;1536:2;1524:9;1515:7;1511:23;1507:32;1504:52;;;1552:1;1549;1542:12;1504:52;1591:9;1578:23;1610:31;1635:5;1610:31;:::i;:::-;1660:5;-1:-1:-1;1717:2:11;1702:18;;1689:32;1730:33;1689:32;1730:33;:::i;:::-;1782:7;1772:17;;;1407:388;;;;;:::o;1800:456::-;1877:6;1885;1893;1946:2;1934:9;1925:7;1921:23;1917:32;1914:52;;;1962:1;1959;1952:12;1914:52;2001:9;1988:23;2020:31;2045:5;2020:31;:::i;:::-;2070:5;-1:-1:-1;2127:2:11;2112:18;;2099:32;2140:33;2099:32;2140:33;:::i;:::-;1800:456;;2192:7;;-1:-1:-1;;;2246:2:11;2231:18;;;;2218:32;;1800:456::o;2261:1108::-;2356:6;2364;2372;2380;2433:3;2421:9;2412:7;2408:23;2404:33;2401:53;;;2450:1;2447;2440:12;2401:53;2489:9;2476:23;2508:31;2533:5;2508:31;:::i;:::-;2558:5;-1:-1:-1;2582:2:11;2621:18;;;2608:32;2649:33;2608:32;2649:33;:::i;:::-;2701:7;-1:-1:-1;2755:2:11;2740:18;;2727:32;;-1:-1:-1;2810:2:11;2795:18;;2782:32;-1:-1:-1;;;;;2863:14:11;;;2860:34;;;2890:1;2887;2880:12;2860:34;2928:6;2917:9;2913:22;2903:32;;2973:7;2966:4;2962:2;2958:13;2954:27;2944:55;;2995:1;2992;2985:12;2944:55;3031:2;3018:16;3053:2;3049;3046:10;3043:36;;;3059:18;;:::i;:::-;3101:53;3144:2;3125:13;;-1:-1:-1;;3121:27:11;3117:36;;3101:53;:::i;:::-;3088:66;;3177:2;3170:5;3163:17;3217:7;3212:2;3207;3203;3199:11;3195:20;3192:33;3189:53;;;3238:1;3235;3228:12;3189:53;3293:2;3288;3284;3280:11;3275:2;3268:5;3264:14;3251:45;3337:1;3332:2;3327;3320:5;3316:14;3312:23;3305:34;;3358:5;3348:15;;;;;2261:1108;;;;;;;:::o;3374:915::-;3490:6;3498;3506;3514;3522;3530;3583:3;3571:9;3562:7;3558:23;3554:33;3551:53;;;3600:1;3597;3590:12;3551:53;3639:9;3626:23;3658:31;3683:5;3658:31;:::i;:::-;3708:5;-1:-1:-1;3765:2:11;3750:18;;3737:32;3778:33;3737:32;3778:33;:::i;:::-;3830:7;-1:-1:-1;3884:2:11;3869:18;;3856:32;;-1:-1:-1;3940:2:11;3925:18;;3912:32;3975:1;3963:14;;3953:42;;3991:1;3988;3981:12;3953:42;4014:7;-1:-1:-1;4072:3:11;4057:19;;4044:33;-1:-1:-1;;;;;4089:30:11;;4086:50;;;4132:1;4129;4122:12;4086:50;4171:58;4221:7;4212:6;4201:9;4197:22;4171:58;:::i;:::-;3374:915;;;;-1:-1:-1;3374:915:11;;-1:-1:-1;3374:915:11;;4248:8;;3374:915;-1:-1:-1;;;3374:915:11:o;4294:382::-;4359:6;4367;4420:2;4408:9;4399:7;4395:23;4391:32;4388:52;;;4436:1;4433;4426:12;4388:52;4475:9;4462:23;4494:31;4519:5;4494:31;:::i;:::-;4544:5;-1:-1:-1;4601:2:11;4586:18;;4573:32;4614:30;4573:32;4614:30;:::i;4681:315::-;4749:6;4757;4810:2;4798:9;4789:7;4785:23;4781:32;4778:52;;;4826:1;4823;4816:12;4778:52;4865:9;4852:23;4884:31;4909:5;4884:31;:::i;:::-;4934:5;4986:2;4971:18;;;;4958:32;;-1:-1:-1;;;4681:315:11:o;5001:612::-;5089:6;5097;5105;5113;5166:2;5154:9;5145:7;5141:23;5137:32;5134:52;;;5182:1;5179;5172:12;5134:52;5221:9;5208:23;5240:31;5265:5;5240:31;:::i;:::-;5290:5;-1:-1:-1;5342:2:11;5327:18;;5314:32;;-1:-1:-1;5397:2:11;5382:18;;5369:32;-1:-1:-1;;;;;5413:30:11;;5410:50;;;5456:1;5453;5446:12;5410:50;5495:58;5545:7;5536:6;5525:9;5521:22;5495:58;:::i;:::-;5001:612;;;;-1:-1:-1;5572:8:11;-1:-1:-1;;;;5001:612:11:o;5618:437::-;5704:6;5712;5765:2;5753:9;5744:7;5740:23;5736:32;5733:52;;;5781:1;5778;5771:12;5733:52;5821:9;5808:23;-1:-1:-1;;;;;5846:6:11;5843:30;5840:50;;;5886:1;5883;5876:12;5840:50;5925:70;5987:7;5978:6;5967:9;5963:22;5925:70;:::i;:::-;6014:8;;5899:96;;-1:-1:-1;5618:437:11;-1:-1:-1;;;;5618:437:11:o;6060:815::-;6173:6;6181;6189;6197;6205;6258:2;6246:9;6237:7;6233:23;6229:32;6226:52;;;6274:1;6271;6264:12;6226:52;6314:9;6301:23;-1:-1:-1;;;;;6384:2:11;6376:6;6373:14;6370:34;;;6400:1;6397;6390:12;6370:34;6439:70;6501:7;6492:6;6481:9;6477:22;6439:70;:::i;:::-;6528:8;;-1:-1:-1;6413:96:11;-1:-1:-1;6413:96:11;;-1:-1:-1;6582:36:11;6614:2;6599:18;;6582:36;:::i;:::-;6572:46;;6671:2;6660:9;6656:18;6643:32;6627:48;;6700:2;6690:8;6687:16;6684:36;;;6716:1;6713;6706:12;6684:36;;6755:60;6807:7;6796:8;6785:9;6781:24;6755:60;:::i;:::-;6060:815;;;;-1:-1:-1;6060:815:11;;-1:-1:-1;6834:8:11;;6729:86;6060:815;-1:-1:-1;;;6060:815:11:o;6880:245::-;6947:6;7000:2;6988:9;6979:7;6975:23;6971:32;6968:52;;;7016:1;7013;7006:12;6968:52;7048:9;7042:16;7067:28;7089:5;7067:28;:::i;7130:245::-;7188:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:52;;;7257:1;7254;7247:12;7209:52;7296:9;7283:23;7315:30;7339:5;7315:30;:::i;7380:249::-;7449:6;7502:2;7490:9;7481:7;7477:23;7473:32;7470:52;;;7518:1;7515;7508:12;7470:52;7550:9;7544:16;7569:30;7593:5;7569:30;:::i;7634:410::-;7705:6;7713;7766:2;7754:9;7745:7;7741:23;7737:32;7734:52;;;7782:1;7779;7772:12;7734:52;7822:9;7809:23;-1:-1:-1;;;;;7847:6:11;7844:30;7841:50;;;7887:1;7884;7877:12;7841:50;7926:58;7976:7;7967:6;7956:9;7952:22;7926:58;:::i;8049:1313::-;8163:6;8171;8179;8187;8240:2;8228:9;8219:7;8215:23;8211:32;8208:52;;;8256:1;8253;8246:12;8208:52;8296:9;8283:23;-1:-1:-1;;;;;8366:2:11;8358:6;8355:14;8352:34;;;8382:1;8379;8372:12;8352:34;8421:58;8471:7;8462:6;8451:9;8447:22;8421:58;:::i;:::-;8498:8;;-1:-1:-1;8395:84:11;-1:-1:-1;8552:2:11;8586:18;;;8573:32;;-1:-1:-1;8552:2:11;-1:-1:-1;8658:2:11;8643:18;;8630:32;8674:16;;;8671:36;;;8703:1;8700;8693:12;8671:36;8726:24;;8781:4;8773:13;;8769:27;-1:-1:-1;8759:55:11;;8810:1;8807;8800:12;8759:55;8846:2;8833:16;8868:2;8864;8861:10;8858:36;;;8874:18;;:::i;:::-;8920:2;8917:1;8913:10;8903:20;;8943:28;8967:2;8963;8959:11;8943:28;:::i;:::-;9005:15;;;9036:12;;;;9068:11;;;9098;;;9094:20;;9091:33;-1:-1:-1;9088:53:11;;;9137:1;9134;9127:12;9088:53;9159:1;9150:10;;9169:163;9183:2;9180:1;9177:9;9169:163;;;9240:17;;9228:30;;9201:1;9194:9;;;;;9278:12;;;;9310;;9169:163;;;-1:-1:-1;8049:1313:11;;;;-1:-1:-1;8049:1313:11;;-1:-1:-1;;;;;;;8049:1313:11:o;9367:180::-;9426:6;9479:2;9467:9;9458:7;9454:23;9450:32;9447:52;;;9495:1;9492;9485:12;9447:52;-1:-1:-1;9518:23:11;;9367:180;-1:-1:-1;9367:180:11:o;9552:519::-;9635:6;9643;9651;9659;9712:3;9700:9;9691:7;9687:23;9683:33;9680:53;;;9729:1;9726;9719:12;9680:53;9765:9;9752:23;9742:33;;9825:2;9814:9;9810:18;9797:32;9838:31;9863:5;9838:31;:::i;:::-;9888:5;-1:-1:-1;9940:2:11;9925:18;;9912:32;;-1:-1:-1;9996:2:11;9981:18;;9968:32;10009:30;9968:32;10009:30;:::i;:::-;9552:519;;;;-1:-1:-1;9552:519:11;;-1:-1:-1;;9552:519:11:o;10076:250::-;10142:6;10150;10203:2;10191:9;10182:7;10178:23;10174:32;10171:52;;;10219:1;10216;10209:12;10171:52;10255:9;10242:23;10232:33;;10284:36;10316:2;10305:9;10301:18;10284:36;:::i;:::-;10274:46;;10076:250;;;;;:::o;10331:257::-;10372:3;10410:5;10404:12;10437:6;10432:3;10425:19;10453:63;10509:6;10502:4;10497:3;10493:14;10486:4;10479:5;10475:16;10453:63;:::i;:::-;10570:2;10549:15;-1:-1:-1;;10545:29:11;10536:39;;;;10577:4;10532:50;;10331:257;-1:-1:-1;;10331:257:11:o;10892:530::-;11122:26;11118:31;11109:6;11105:2;11101:15;11097:53;11092:3;11085:66;11181:6;11176:2;11171:3;11167:12;11160:28;11067:3;11218:1;11210:6;11207:13;11197:144;;11263:10;11258:3;11254:20;11251:1;11244:31;11298:4;11295:1;11288:15;11326:4;11323:1;11316:15;11197:144;-1:-1:-1;11375:3:11;11371:16;;;;11366:2;11357:12;;11350:38;11413:2;11404:12;;10892:530;-1:-1:-1;;10892:530:11:o;11427:400::-;11598:3;-1:-1:-1;;;;;11619:31:11;;11616:51;;;11663:1;11660;11653:12;11616:51;11697:6;11694:1;11690:14;11739:6;11731;11726:3;11713:33;11801:1;11765:16;;11790:13;;;-1:-1:-1;11765:16:11;11427:400;-1:-1:-1;;11427:400:11:o;12287:273::-;12472:6;12464;12459:3;12446:33;12428:3;12498:16;;12523:13;;;12498:16;12287:273;-1:-1:-1;12287:273:11:o;12565:470::-;12744:3;12782:6;12776:13;12798:53;12844:6;12839:3;12832:4;12824:6;12820:17;12798:53;:::i;:::-;12914:13;;12873:16;;;;12936:57;12914:13;12873:16;12970:4;12958:17;;12936:57;:::i;:::-;13009:20;;12565:470;-1:-1:-1;;;;12565:470:11:o;14292:488::-;-1:-1:-1;;;;;14561:15:11;;;14543:34;;14613:15;;14608:2;14593:18;;14586:43;14660:2;14645:18;;14638:34;;;14708:3;14703:2;14688:18;;14681:31;;;14486:4;;14729:45;;14754:19;;14746:6;14729:45;:::i;:::-;14721:53;14292:488;-1:-1:-1;;;;;;14292:488:11:o;14785:658::-;14956:2;15008:21;;;15078:13;;14981:18;;;15100:22;;;14927:4;;14956:2;15179:15;;;;15153:2;15138:18;;;14927:4;15222:195;15236:6;15233:1;15230:13;15222:195;;;15301:13;;-1:-1:-1;;;;;15297:39:11;15285:52;;15392:15;;;;15357:12;;;;15333:1;15251:9;15222:195;;;-1:-1:-1;15434:3:11;;14785:658;-1:-1:-1;;;;;;14785:658:11:o;15448:632::-;15619:2;15671:21;;;15741:13;;15644:18;;;15763:22;;;15590:4;;15619:2;15842:15;;;;15816:2;15801:18;;;15590:4;15885:169;15899:6;15896:1;15893:13;15885:169;;;15960:13;;15948:26;;16029:15;;;;15994:12;;;;15921:1;15914:9;15885:169;;16680:219;16829:2;16818:9;16811:21;16792:4;16849:44;16889:2;16878:9;16874:18;16866:6;16849:44;:::i;20183:338::-;20385:2;20367:21;;;20424:2;20404:18;;;20397:30;-1:-1:-1;;;20458:2:11;20443:18;;20436:44;20512:2;20497:18;;20183:338::o;25736:346::-;25938:2;25920:21;;;25977:2;25957:18;;;25950:30;-1:-1:-1;;;26011:2:11;25996:18;;25989:52;26073:2;26058:18;;25736:346::o;26087:332::-;26289:2;26271:21;;;26328:1;26308:18;;;26301:29;-1:-1:-1;;;26361:2:11;26346:18;;26339:39;26410:2;26395:18;;26087:332::o;27002:275::-;27073:2;27067:9;27138:2;27119:13;;-1:-1:-1;;27115:27:11;27103:40;;-1:-1:-1;;;;;27158:34:11;;27194:22;;;27155:62;27152:88;;;27220:18;;:::i;:::-;27256:2;27249:22;27002:275;;-1:-1:-1;27002:275:11:o;27282:128::-;27322:3;27353:1;27349:6;27346:1;27343:13;27340:39;;;27359:18;;:::i;:::-;-1:-1:-1;27395:9:11;;27282:128::o;27415:120::-;27455:1;27481;27471:35;;27486:18;;:::i;:::-;-1:-1:-1;27520:9:11;;27415:120::o;27540:168::-;27580:7;27646:1;27642;27638:6;27634:14;27631:1;27628:21;27623:1;27616:9;27609:17;27605:45;27602:71;;;27653:18;;:::i;:::-;-1:-1:-1;27693:9:11;;27540:168::o;27713:125::-;27753:4;27781:1;27778;27775:8;27772:34;;;27786:18;;:::i;:::-;-1:-1:-1;27823:9:11;;27713:125::o;27843:258::-;27915:1;27925:113;27939:6;27936:1;27933:13;27925:113;;;28015:11;;;28009:18;27996:11;;;27989:39;27961:2;27954:10;27925:113;;;28056:6;28053:1;28050:13;28047:48;;;-1:-1:-1;;28091:1:11;28073:16;;28066:27;27843:258::o;28106:136::-;28145:3;28173:5;28163:39;;28182:18;;:::i;:::-;-1:-1:-1;;;28218:18:11;;28106:136::o;28247:380::-;28326:1;28322:12;;;;28369;;;28390:61;;28444:4;28436:6;28432:17;28422:27;;28390:61;28497:2;28489:6;28486:14;28466:18;28463:38;28460:161;;;28543:10;28538:3;28534:20;28531:1;28524:31;28578:4;28575:1;28568:15;28606:4;28603:1;28596:15;28460:161;;28247:380;;;:::o;28632:135::-;28671:3;-1:-1:-1;;28692:17:11;;28689:43;;;28712:18;;:::i;:::-;-1:-1:-1;28759:1:11;28748:13;;28632:135::o;28772:112::-;28804:1;28830;28820:35;;28835:18;;:::i;:::-;-1:-1:-1;28869:9:11;;28772:112::o;28889:127::-;28950:10;28945:3;28941:20;28938:1;28931:31;28981:4;28978:1;28971:15;29005:4;29002:1;28995:15;29021:127;29082:10;29077:3;29073:20;29070:1;29063:31;29113:4;29110:1;29103:15;29137:4;29134:1;29127:15;29153:127;29214:10;29209:3;29205:20;29202:1;29195:31;29245:4;29242:1;29235:15;29269:4;29266:1;29259:15;29285:127;29346:10;29341:3;29337:20;29334:1;29327:31;29377:4;29374:1;29367:15;29401:4;29398:1;29391:15;29417:127;29478:10;29473:3;29469:20;29466:1;29459:31;29509:4;29506:1;29499:15;29533:4;29530:1;29523:15;29549:127;29610:10;29605:3;29601:20;29598:1;29591:31;29641:4;29638:1;29631:15;29665:4;29662:1;29655:15;29681:131;-1:-1:-1;;;;;29756:31:11;;29746:42;;29736:70;;29802:1;29799;29792:12;29817:118;29903:5;29896:13;29889:21;29882:5;29879:32;29869:60;;29925:1;29922;29915:12;29940:131;-1:-1:-1;;;;;;30014:32:11;;30004:43;;29994:71;;30061:1;30058;30051:12
Swarm Source
ipfs://0442e9913461729be3308b3cf560f0a49b9028ffb83ac7f9a59ed95190243c4e
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.