Overview
APE Balance
APE Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Multichain Info
Latest 25 from a total of 359 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 31545597 | 31 days ago | IN | 0 APE | 0.00252122 | ||||
| Set Approval For... | 31516285 | 32 days ago | IN | 0 APE | 0.00252122 | ||||
| Set Approval For... | 29215189 | 59 days ago | IN | 0 APE | 0.00118559 | ||||
| Set Approval For... | 28212195 | 69 days ago | IN | 0 APE | 0.00118557 | ||||
| Set Approval For... | 24458152 | 116 days ago | IN | 0 APE | 0.00063068 | ||||
| Set Approval For... | 23750503 | 128 days ago | IN | 0 APE | 0.00063068 | ||||
| Set Approval For... | 20966020 | 160 days ago | IN | 0 APE | 0.0011877 | ||||
| Set Approval For... | 20031049 | 178 days ago | IN | 0 APE | 0.0011877 | ||||
| Set Approval For... | 19974577 | 180 days ago | IN | 0 APE | 0.00118773 | ||||
| Set Approval For... | 19922445 | 181 days ago | IN | 0 APE | 0.0011877 | ||||
| Set Approval For... | 19801851 | 184 days ago | IN | 0 APE | 0.00118557 | ||||
| Set Approval For... | 19798014 | 184 days ago | IN | 0 APE | 0.00118557 | ||||
| Set Approval For... | 19796415 | 184 days ago | IN | 0 APE | 0.00118557 | ||||
| Set Approval For... | 19197761 | 199 days ago | IN | 0 APE | 0.00063068 | ||||
| Set Approval For... | 18087557 | 226 days ago | IN | 0 APE | 0.00118559 | ||||
| Set Approval For... | 17788459 | 230 days ago | IN | 0 APE | 0.00118559 | ||||
| Set Approval For... | 17407589 | 232 days ago | IN | 0 APE | 0.00063068 | ||||
| Set Approval For... | 17077236 | 236 days ago | IN | 0 APE | 0.00063068 | ||||
| Set Approval For... | 12861342 | 293 days ago | IN | 0 APE | 0.00118773 | ||||
| Set Approval For... | 12536986 | 300 days ago | IN | 0 APE | 0.00118557 | ||||
| Set Approval For... | 12415880 | 303 days ago | IN | 0 APE | 0.00063068 | ||||
| Set Approval For... | 10692060 | 331 days ago | IN | 0 APE | 0.00063071 | ||||
| Set Approval For... | 10659405 | 332 days ago | IN | 0 APE | 0.00118557 | ||||
| Set Approval For... | 10641188 | 333 days ago | IN | 0 APE | 0.00118773 | ||||
| Set Approval For... | 10567598 | 334 days ago | IN | 0 APE | 0.00118773 |
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 8778338 | 365 days ago | 639.1 APE |
Cross-Chain Transactions
Contract Source Code (Solidity)
/**
*Submitted for verification at apescan.io on 2025-01-09
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;
/**
* @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();
/**
* The caller cannot approve to their own address.
*/
error ApproveToCaller();
/**
* 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;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @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;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
// =============================================================
// 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);
}
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
contract Gobits is IERC721A {
using SafeMath for uint256;
address private _owner;
function owner() public view returns(address){
return _owner;
}
mapping(address=>bool) minted;
uint256 public constant MAX_SUPPLY = 1111;
uint256 public constant MAX_PER_WALLET = 11;
uint256 public constant COST = 0.7 ether;
string private constant _name = "Gobits";
string private constant _symbol = "Gobits";
string private _baseURI = "QmVUoG344SxTvqRU1Mkk5nk4nXEqt13Le4qc5DtcbjnbQf";
constructor() {
_owner = msg.sender;
}
function mint(uint256 amount) external payable{
address _caller = _msgSenderERC721A();
require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
require(amount*COST <= msg.value, "Value to Low");
_mint(_caller, amount);
}
// Mask of an entry in packed address data.
uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
// The bit position of `numberMinted` in packed address data.
uint256 private constant BITPOS_NUMBER_MINTED = 64;
// The bit position of `numberBurned` in packed address data.
uint256 private constant BITPOS_NUMBER_BURNED = 128;
// The bit position of `aux` in packed address data.
uint256 private constant BITPOS_AUX = 192;
// Mask of all 256 bits in packed address data except the 64 bits for `aux`.
uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
// The bit position of `startTimestamp` in packed ownership.
uint256 private constant BITPOS_START_TIMESTAMP = 160;
// The bit mask of the `burned` bit in packed ownership.
uint256 private constant BITMASK_BURNED = 1 << 224;
// The bit position of the `nextInitialized` bit in packed ownership.
uint256 private constant BITPOS_NEXT_INITIALIZED = 225;
// The bit mask of the `nextInitialized` bit in packed ownership.
uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;
// The tokenId of the next token to be minted.
uint256 private _currentIndex = 0;
// The number of tokens burned.
// uint256 private _burnCounter;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned.
// See `_packedOwnershipOf` implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
function setData(string memory _base) external onlyOwner{
_baseURI = _base;
}
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see `_totalMinted`.
*/
function totalSupply() public view override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to `_startTokenId()`
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes of the XOR of
// all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
// e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
if (_addressToUint256(owner) == 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> BITPOS_AUX);
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & BITMASK_BURNED == 0) {
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed is zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
ownership.burned = packed & BITMASK_BURNED != 0;
}
/**
* Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
}
/**
* @dev Casts the address to uint256 without masking.
*/
function _addressToUint256(address value) private pure returns (uint256 result) {
assembly {
result := value
}
}
/**
* @dev Casts the boolean to uint256 without branching.
*/
function _boolToUint256(bool value) private pure returns (uint256 result) {
assembly {
result := value
}
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = address(uint160(_packedOwnershipOf(tokenId)));
if (to == owner) revert();
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSenderERC721A()) revert ApproveToCaller();
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex;
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 quantity) internal {
uint256 startTokenId = _currentIndex;
//if (_addressToUint256(to) == 0) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the balance and number minted.
_packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] =
_addressToUint256(to) |
(block.timestamp << BITPOS_START_TIMESTAMP) |
(_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex < end);
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
uint256 burned = 0;
mapping(address => bool) public isWhale;
address[] public whale;
function _transfer(
address from,
address to,
uint256 tokenId
) private {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
address approvedAddress = _tokenApprovals[tokenId];
bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
isApprovedForAll(from, _msgSenderERC721A()) ||
approvedAddress == _msgSenderERC721A());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
// Clear approvals from the previous owner.
if (_addressToUint256(approvedAddress) != 0) {
delete _tokenApprovals[tokenId];
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] =
_addressToUint256(to) |
(block.timestamp << BITPOS_START_TIMESTAMP) |
BITMASK_NEXT_INITIALIZED;
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev 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 remove(address[] storage array, uint256 index) internal {
require(array.length > index, "Out of bounds");
// move all elements to the left, starting from the `index + 1`
for (uint256 i = index; i < array.length - 1; i++) {
array[i] = array[i+1];
}
array.pop(); // delete the last item
}
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {
}
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function _toString(uint256 value) internal pure returns (string memory ptr) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit),
// but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
// We will need 1 32-byte word to store the length,
// and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
ptr := add(mload(0x40), 128)
// Update the free memory pointer to allocate.
mstore(0x40, ptr)
// Cache the end of the memory to calculate the length later.
let end := ptr
// We write the string from the rightmost digit to the leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// Costs a bit more than early returning for the zero case,
// but cheaper in terms of deployment and overall runtime costs.
for {
// Initialize and perform the first pass without check.
let temp := value
// Move the pointer 1 byte leftwards to point to an empty character slot.
ptr := sub(ptr, 1)
// Write the character to the pointer. 48 is the ASCII index of '0'.
mstore8(ptr, add(48, mod(temp, 10)))
temp := div(temp, 10)
} temp {
// Keep dividing `temp` until zero.
temp := div(temp, 10)
} {
// Body of the for loop.
ptr := sub(ptr, 1)
mstore8(ptr, add(48, mod(temp, 10)))
}
let length := sub(end, ptr)
// Move the pointer 32 bytes leftwards to make room for the length.
ptr := sub(ptr, 32)
// Store the length.
mstore(ptr, length)
}
}
function generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) {
uint256 blockNumber = block.number - 1; // Use the previous block's hash
bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId));
return uint256(blockHash) % mod;
}
bool public teamMintUsed = false;
function teamMint(uint256 amount) external onlyOwner{
require(totalSupply() + amount < MAX_SUPPLY, "Used only Once");
_mint(msg.sender, amount);
}
modifier onlyOwner() {
require(_owner==msg.sender, "not Owner");
_;
}
modifier nob() {
require(tx.origin==msg.sender, "no Script");
_;
}
function withdraw() external onlyOwner {
uint256 balance = address(this).balance;
payable(msg.sender).transfer(balance);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526040518060600160405280602e815260200161292b602e91396002908161002b91906102da565b505f6003555f6008555f600b5f6101000a81548160ff021916908315150217905550348015610058575f5ffd5b50335f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103a9565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061011857607f821691505b60208210810361012b5761012a6100d4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261018d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610152565b6101978683610152565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101db6101d66101d1846101af565b6101b8565b6101af565b9050919050565b5f819050919050565b6101f4836101c1565b610208610200826101e2565b84845461015e565b825550505050565b5f5f905090565b61021f610210565b61022a8184846101eb565b505050565b5b8181101561024d576102425f82610217565b600181019050610230565b5050565b601f8211156102925761026381610131565b61026c84610143565b8101602085101561027b578190505b61028f61028785610143565b83018261022f565b50505b505050565b5f82821c905092915050565b5f6102b25f1984600802610297565b1980831691505092915050565b5f6102ca83836102a3565b9150826002028217905092915050565b6102e38261009d565b67ffffffffffffffff8111156102fc576102fb6100a7565b5b6103068254610101565b610311828285610251565b5f60209050601f831160018114610342575f8415610330578287015190505b61033a85826102bf565b8655506103a1565b601f19841661035086610131565b5f5b8281101561037757848901518255600182019150602085019450602081019050610352565b868310156103945784890151610390601f8916826102a3565b8355505b6001600288020188555050505b505050505050565b612575806103b65f395ff3fe608060405260043610610180575f3560e01c8063609526c2116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd21461055c578063c87b56dd14610586578063e985e9c5146105c2578063f14695ae146105fe57610180565b8063a0712d68146104f0578063a22cb4651461050c578063b88d4fde1461053457610180565b8063609526c2146103ac5780636352211e146103e857806370a08231146104245780638da5cb5b146104605780638ef1e2591461048a57806395d89b41146104c657610180565b806323b872dd1161013d5780633ccfd60b116101175780633ccfd60b1461031c57806342842e0e1461033257806347064d6a1461035a5780634dd08f821461038257610180565b806323b872dd146102a25780632fbba115146102ca57806332cb6b0c146102f257610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b3146102265780630f2cdd6c1461024e57806318160ddd14610278575b5f5ffd5b34801561018f575f5ffd5b506101aa60048036038101906101a591906117ed565b61063a565b6040516101b79190611832565b60405180910390f35b3480156101cb575f5ffd5b506101d46106cb565b6040516101e191906118bb565b60405180910390f35b3480156101f5575f5ffd5b50610210600480360381019061020b919061190e565b610708565b60405161021d9190611978565b60405180910390f35b348015610231575f5ffd5b5061024c600480360381019061024791906119bb565b610780565b005b348015610259575f5ffd5b506102626108f4565b60405161026f9190611a08565b60405180910390f35b348015610283575f5ffd5b5061028c6108f9565b6040516102999190611a08565b60405180910390f35b3480156102ad575f5ffd5b506102c860048036038101906102c39190611a21565b61090b565b005b3480156102d5575f5ffd5b506102f060048036038101906102eb919061190e565b61091b565b005b3480156102fd575f5ffd5b50610306610a0c565b6040516103139190611a08565b60405180910390f35b348015610327575f5ffd5b50610330610a12565b005b34801561033d575f5ffd5b5061035860048036038101906103539190611a21565b610aeb565b005b348015610365575f5ffd5b50610380600480360381019061037b9190611b9d565b610b0a565b005b34801561038d575f5ffd5b50610396610bab565b6040516103a39190611832565b60405180910390f35b3480156103b7575f5ffd5b506103d260048036038101906103cd9190611be4565b610bbd565b6040516103df9190611a08565b60405180910390f35b3480156103f3575f5ffd5b5061040e6004803603810190610409919061190e565b610c14565b60405161041b9190611978565b60405180910390f35b34801561042f575f5ffd5b5061044a60048036038101906104459190611c22565b610c25565b6040516104579190611a08565b60405180910390f35b34801561046b575f5ffd5b50610474610cb6565b6040516104819190611978565b60405180910390f35b348015610495575f5ffd5b506104b060048036038101906104ab9190611c22565b610cdd565b6040516104bd9190611832565b60405180910390f35b3480156104d1575f5ffd5b506104da610cfa565b6040516104e791906118bb565b60405180910390f35b61050a6004803603810190610505919061190e565b610d37565b005b348015610517575f5ffd5b50610532600480360381019061052d9190611c77565b610dfd565b005b34801561053f575f5ffd5b5061055a60048036038101906105559190611d53565b610f6f565b005b348015610567575f5ffd5b50610570610f80565b60405161057d9190611a08565b60405180910390f35b348015610591575f5ffd5b506105ac60048036038101906105a7919061190e565b610f8c565b6040516105b991906118bb565b60405180910390f35b3480156105cd575f5ffd5b506105e860048036038101906105e39190611dd3565b6110a8565b6040516105f59190611832565b60405180910390f35b348015610609575f5ffd5b50610624600480360381019061061f919061190e565b611136565b6040516106319190611978565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600681526020017f476f626974730000000000000000000000000000000000000000000000000000815250905090565b5f61071282611171565b610748576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61078a82611191565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c3575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff166107e2611255565b73ffffffffffffffffffffffffffffffffffffffff16146108455761080e81610809611255565b6110a8565b610844576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b81565b5f61090261125c565b60035403905090565b610916838383611263565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090611e5b565b60405180910390fd5b610457816109b56108f9565b6109bf9190611ea6565b106109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690611f23565b60405180910390fd5b610a0933826115c0565b50565b61045781565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611e5b565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610ae7573d5f5f3e3d5ffd5b5050565b610b0583838360405180602001604052805f815250610f6f565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611e5b565b60405180910390fd5b8060029081610ba7919061213e565b5050565b600b5f9054906101000a900460ff1681565b5f5f600143610bcc919061220d565b90505f813386604051602001610be493929190612240565b60405160208183030381529060405280519060200120905083815f1c610c0a91906122a2565b9250505092915050565b5f610c1e82611191565b9050919050565b5f5f610c3083611715565b03610c67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6009602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600681526020017f476f626974730000000000000000000000000000000000000000000000000000815250905090565b5f610d40611255565b905061045782610d4e6108f9565b610d589190611ea6565b1115610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d909061231c565b60405180910390fd5b346709b6e64a8ec6000083610dae919061233a565b1115610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de6906123c5565b60405180910390fd5b610df981836115c0565b5050565b610e05611255565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e69576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610e75611255565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f1e611255565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f639190611832565b60405180910390a35050565b610f7a848484611263565b50505050565b6709b6e64a8ec6000081565b6060610f9782611171565b610fcd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60028054610fdb90611f6e565b80601f016020809104026020016040519081016040528092919081815260200182805461100790611f6e565b80156110525780601f1061102957610100808354040283529160200191611052565b820191905f5260205f20905b81548152906001019060200180831161103557829003601f168201915b505050505090505f8151036110755760405180602001604052805f8152506110a0565b8061107f8461171e565b6040516020016110909291906124fb565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600a8181548110611145575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161117b61125c565b1115801561118a575060035482105b9050919050565b5f5f8290508061119f61125c565b1161121e5760035481101561121d575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361121b575b5f81036112115760045f836001900393508381526020019081526020015f205490506111ea565b8092505050611250565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f61126d82611191565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff16611328611255565b73ffffffffffffffffffffffffffffffffffffffff161480611357575061135686611351611255565b6110a8565b5b806113945750611365611255565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806113cd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6113d783611715565b146114105760065f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6114d187611715565b171760045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611550575f6001850190505f60045f8381526020019081526020015f20540361154e57600354811461154d578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115b88686866001611778565b505050505050565b5f60035490505f82036115ff576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e16116616001841461177e565b901b60a042901b61167185611715565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611693578160038190555050506117105f848385611778565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561176457600183039250600a81066030018353600a81049050611744565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6117cc81611798565b81146117d6575f5ffd5b50565b5f813590506117e7816117c3565b92915050565b5f6020828403121561180257611801611790565b5b5f61180f848285016117d9565b91505092915050565b5f8115159050919050565b61182c81611818565b82525050565b5f6020820190506118455f830184611823565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61188d8261184b565b6118978185611855565b93506118a7818560208601611865565b6118b081611873565b840191505092915050565b5f6020820190508181035f8301526118d38184611883565b905092915050565b5f819050919050565b6118ed816118db565b81146118f7575f5ffd5b50565b5f81359050611908816118e4565b92915050565b5f6020828403121561192357611922611790565b5b5f611930848285016118fa565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61196282611939565b9050919050565b61197281611958565b82525050565b5f60208201905061198b5f830184611969565b92915050565b61199a81611958565b81146119a4575f5ffd5b50565b5f813590506119b581611991565b92915050565b5f5f604083850312156119d1576119d0611790565b5b5f6119de858286016119a7565b92505060206119ef858286016118fa565b9150509250929050565b611a02816118db565b82525050565b5f602082019050611a1b5f8301846119f9565b92915050565b5f5f5f60608486031215611a3857611a37611790565b5b5f611a45868287016119a7565b9350506020611a56868287016119a7565b9250506040611a67868287016118fa565b9150509250925092565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611aaf82611873565b810181811067ffffffffffffffff82111715611ace57611acd611a79565b5b80604052505050565b5f611ae0611787565b9050611aec8282611aa6565b919050565b5f67ffffffffffffffff821115611b0b57611b0a611a79565b5b611b1482611873565b9050602081019050919050565b828183375f83830152505050565b5f611b41611b3c84611af1565b611ad7565b905082815260208101848484011115611b5d57611b5c611a75565b5b611b68848285611b21565b509392505050565b5f82601f830112611b8457611b83611a71565b5b8135611b94848260208601611b2f565b91505092915050565b5f60208284031215611bb257611bb1611790565b5b5f82013567ffffffffffffffff811115611bcf57611bce611794565b5b611bdb84828501611b70565b91505092915050565b5f5f60408385031215611bfa57611bf9611790565b5b5f611c07858286016118fa565b9250506020611c18858286016118fa565b9150509250929050565b5f60208284031215611c3757611c36611790565b5b5f611c44848285016119a7565b91505092915050565b611c5681611818565b8114611c60575f5ffd5b50565b5f81359050611c7181611c4d565b92915050565b5f5f60408385031215611c8d57611c8c611790565b5b5f611c9a858286016119a7565b9250506020611cab85828601611c63565b9150509250929050565b5f67ffffffffffffffff821115611ccf57611cce611a79565b5b611cd882611873565b9050602081019050919050565b5f611cf7611cf284611cb5565b611ad7565b905082815260208101848484011115611d1357611d12611a75565b5b611d1e848285611b21565b509392505050565b5f82601f830112611d3a57611d39611a71565b5b8135611d4a848260208601611ce5565b91505092915050565b5f5f5f5f60808587031215611d6b57611d6a611790565b5b5f611d78878288016119a7565b9450506020611d89878288016119a7565b9350506040611d9a878288016118fa565b925050606085013567ffffffffffffffff811115611dbb57611dba611794565b5b611dc787828801611d26565b91505092959194509250565b5f5f60408385031215611de957611de8611790565b5b5f611df6858286016119a7565b9250506020611e07858286016119a7565b9150509250929050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f611e45600983611855565b9150611e5082611e11565b602082019050919050565b5f6020820190508181035f830152611e7281611e39565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611eb0826118db565b9150611ebb836118db565b9250828201905080821115611ed357611ed2611e79565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f611f0d600e83611855565b9150611f1882611ed9565b602082019050919050565b5f6020820190508181035f830152611f3a81611f01565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f8557607f821691505b602082108103611f9857611f97611f41565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302611ffa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fbf565b6120048683611fbf565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61203f61203a612035846118db565b61201c565b6118db565b9050919050565b5f819050919050565b61205883612025565b61206c61206482612046565b848454611fcb565b825550505050565b5f5f905090565b612083612074565b61208e81848461204f565b505050565b5b818110156120b1576120a65f8261207b565b600181019050612094565b5050565b601f8211156120f6576120c781611f9e565b6120d084611fb0565b810160208510156120df578190505b6120f36120eb85611fb0565b830182612093565b50505b505050565b5f82821c905092915050565b5f6121165f19846008026120fb565b1980831691505092915050565b5f61212e8383612107565b9150826002028217905092915050565b6121478261184b565b67ffffffffffffffff8111156121605761215f611a79565b5b61216a8254611f6e565b6121758282856120b5565b5f60209050601f8311600181146121a6575f8415612194578287015190505b61219e8582612123565b865550612205565b601f1984166121b486611f9e565b5f5b828110156121db578489015182556001820191506020850194506020810190506121b6565b868310156121f857848901516121f4601f891682612107565b8355505b6001600288020188555050505b505050505050565b5f612217826118db565b9150612222836118db565b925082820390508181111561223a57612239611e79565b5b92915050565b5f6060820190506122535f8301866119f9565b6122606020830185611969565b61226d60408301846119f9565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6122ac826118db565b91506122b7836118db565b9250826122c7576122c6612275565b5b828206905092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612306600883611855565b9150612311826122d2565b602082019050919050565b5f6020820190508181035f830152612333816122fa565b9050919050565b5f612344826118db565b915061234f836118db565b925082820261235d816118db565b9150828204841483151761237457612373611e79565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6123af600c83611855565b91506123ba8261237b565b602082019050919050565b5f6020820190508181035f8301526123dc816123a3565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6124216007836123e3565b915061242c826123ed565b600782019050919050565b5f6124418261184b565b61244b81856123e3565b935061245b818560208601611865565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f61249b6001836123e3565b91506124a682612467565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6124e56005836123e3565b91506124f0826124b1565b600582019050919050565b5f61250582612415565b91506125118285612437565b915061251c8261248f565b91506125288284612437565b9150612533826124d9565b9150819050939250505056fea2646970667358221220aaf8642ac3903bae491509d292f73ae325923db89ffec27706eb799044017eaf64736f6c634300081c0033516d56556f4733343453785476715255314d6b6b356e6b346e5845717431334c6534716335447463626a6e625166
Deployed Bytecode
0x608060405260043610610180575f3560e01c8063609526c2116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd21461055c578063c87b56dd14610586578063e985e9c5146105c2578063f14695ae146105fe57610180565b8063a0712d68146104f0578063a22cb4651461050c578063b88d4fde1461053457610180565b8063609526c2146103ac5780636352211e146103e857806370a08231146104245780638da5cb5b146104605780638ef1e2591461048a57806395d89b41146104c657610180565b806323b872dd1161013d5780633ccfd60b116101175780633ccfd60b1461031c57806342842e0e1461033257806347064d6a1461035a5780634dd08f821461038257610180565b806323b872dd146102a25780632fbba115146102ca57806332cb6b0c146102f257610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b3146102265780630f2cdd6c1461024e57806318160ddd14610278575b5f5ffd5b34801561018f575f5ffd5b506101aa60048036038101906101a591906117ed565b61063a565b6040516101b79190611832565b60405180910390f35b3480156101cb575f5ffd5b506101d46106cb565b6040516101e191906118bb565b60405180910390f35b3480156101f5575f5ffd5b50610210600480360381019061020b919061190e565b610708565b60405161021d9190611978565b60405180910390f35b348015610231575f5ffd5b5061024c600480360381019061024791906119bb565b610780565b005b348015610259575f5ffd5b506102626108f4565b60405161026f9190611a08565b60405180910390f35b348015610283575f5ffd5b5061028c6108f9565b6040516102999190611a08565b60405180910390f35b3480156102ad575f5ffd5b506102c860048036038101906102c39190611a21565b61090b565b005b3480156102d5575f5ffd5b506102f060048036038101906102eb919061190e565b61091b565b005b3480156102fd575f5ffd5b50610306610a0c565b6040516103139190611a08565b60405180910390f35b348015610327575f5ffd5b50610330610a12565b005b34801561033d575f5ffd5b5061035860048036038101906103539190611a21565b610aeb565b005b348015610365575f5ffd5b50610380600480360381019061037b9190611b9d565b610b0a565b005b34801561038d575f5ffd5b50610396610bab565b6040516103a39190611832565b60405180910390f35b3480156103b7575f5ffd5b506103d260048036038101906103cd9190611be4565b610bbd565b6040516103df9190611a08565b60405180910390f35b3480156103f3575f5ffd5b5061040e6004803603810190610409919061190e565b610c14565b60405161041b9190611978565b60405180910390f35b34801561042f575f5ffd5b5061044a60048036038101906104459190611c22565b610c25565b6040516104579190611a08565b60405180910390f35b34801561046b575f5ffd5b50610474610cb6565b6040516104819190611978565b60405180910390f35b348015610495575f5ffd5b506104b060048036038101906104ab9190611c22565b610cdd565b6040516104bd9190611832565b60405180910390f35b3480156104d1575f5ffd5b506104da610cfa565b6040516104e791906118bb565b60405180910390f35b61050a6004803603810190610505919061190e565b610d37565b005b348015610517575f5ffd5b50610532600480360381019061052d9190611c77565b610dfd565b005b34801561053f575f5ffd5b5061055a60048036038101906105559190611d53565b610f6f565b005b348015610567575f5ffd5b50610570610f80565b60405161057d9190611a08565b60405180910390f35b348015610591575f5ffd5b506105ac60048036038101906105a7919061190e565b610f8c565b6040516105b991906118bb565b60405180910390f35b3480156105cd575f5ffd5b506105e860048036038101906105e39190611dd3565b6110a8565b6040516105f59190611832565b60405180910390f35b348015610609575f5ffd5b50610624600480360381019061061f919061190e565b611136565b6040516106319190611978565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600681526020017f476f626974730000000000000000000000000000000000000000000000000000815250905090565b5f61071282611171565b610748576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61078a82611191565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c3575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff166107e2611255565b73ffffffffffffffffffffffffffffffffffffffff16146108455761080e81610809611255565b6110a8565b610844576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b81565b5f61090261125c565b60035403905090565b610916838383611263565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090611e5b565b60405180910390fd5b610457816109b56108f9565b6109bf9190611ea6565b106109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690611f23565b60405180910390fd5b610a0933826115c0565b50565b61045781565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611e5b565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610ae7573d5f5f3e3d5ffd5b5050565b610b0583838360405180602001604052805f815250610f6f565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611e5b565b60405180910390fd5b8060029081610ba7919061213e565b5050565b600b5f9054906101000a900460ff1681565b5f5f600143610bcc919061220d565b90505f813386604051602001610be493929190612240565b60405160208183030381529060405280519060200120905083815f1c610c0a91906122a2565b9250505092915050565b5f610c1e82611191565b9050919050565b5f5f610c3083611715565b03610c67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6009602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600681526020017f476f626974730000000000000000000000000000000000000000000000000000815250905090565b5f610d40611255565b905061045782610d4e6108f9565b610d589190611ea6565b1115610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d909061231c565b60405180910390fd5b346709b6e64a8ec6000083610dae919061233a565b1115610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de6906123c5565b60405180910390fd5b610df981836115c0565b5050565b610e05611255565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e69576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610e75611255565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f1e611255565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f639190611832565b60405180910390a35050565b610f7a848484611263565b50505050565b6709b6e64a8ec6000081565b6060610f9782611171565b610fcd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60028054610fdb90611f6e565b80601f016020809104026020016040519081016040528092919081815260200182805461100790611f6e565b80156110525780601f1061102957610100808354040283529160200191611052565b820191905f5260205f20905b81548152906001019060200180831161103557829003601f168201915b505050505090505f8151036110755760405180602001604052805f8152506110a0565b8061107f8461171e565b6040516020016110909291906124fb565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600a8181548110611145575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161117b61125c565b1115801561118a575060035482105b9050919050565b5f5f8290508061119f61125c565b1161121e5760035481101561121d575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361121b575b5f81036112115760045f836001900393508381526020019081526020015f205490506111ea565b8092505050611250565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f61126d82611191565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff16611328611255565b73ffffffffffffffffffffffffffffffffffffffff161480611357575061135686611351611255565b6110a8565b5b806113945750611365611255565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806113cd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6113d783611715565b146114105760065f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6114d187611715565b171760045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611550575f6001850190505f60045f8381526020019081526020015f20540361154e57600354811461154d578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115b88686866001611778565b505050505050565b5f60035490505f82036115ff576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e16116616001841461177e565b901b60a042901b61167185611715565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611693578160038190555050506117105f848385611778565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561176457600183039250600a81066030018353600a81049050611744565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6117cc81611798565b81146117d6575f5ffd5b50565b5f813590506117e7816117c3565b92915050565b5f6020828403121561180257611801611790565b5b5f61180f848285016117d9565b91505092915050565b5f8115159050919050565b61182c81611818565b82525050565b5f6020820190506118455f830184611823565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61188d8261184b565b6118978185611855565b93506118a7818560208601611865565b6118b081611873565b840191505092915050565b5f6020820190508181035f8301526118d38184611883565b905092915050565b5f819050919050565b6118ed816118db565b81146118f7575f5ffd5b50565b5f81359050611908816118e4565b92915050565b5f6020828403121561192357611922611790565b5b5f611930848285016118fa565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61196282611939565b9050919050565b61197281611958565b82525050565b5f60208201905061198b5f830184611969565b92915050565b61199a81611958565b81146119a4575f5ffd5b50565b5f813590506119b581611991565b92915050565b5f5f604083850312156119d1576119d0611790565b5b5f6119de858286016119a7565b92505060206119ef858286016118fa565b9150509250929050565b611a02816118db565b82525050565b5f602082019050611a1b5f8301846119f9565b92915050565b5f5f5f60608486031215611a3857611a37611790565b5b5f611a45868287016119a7565b9350506020611a56868287016119a7565b9250506040611a67868287016118fa565b9150509250925092565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611aaf82611873565b810181811067ffffffffffffffff82111715611ace57611acd611a79565b5b80604052505050565b5f611ae0611787565b9050611aec8282611aa6565b919050565b5f67ffffffffffffffff821115611b0b57611b0a611a79565b5b611b1482611873565b9050602081019050919050565b828183375f83830152505050565b5f611b41611b3c84611af1565b611ad7565b905082815260208101848484011115611b5d57611b5c611a75565b5b611b68848285611b21565b509392505050565b5f82601f830112611b8457611b83611a71565b5b8135611b94848260208601611b2f565b91505092915050565b5f60208284031215611bb257611bb1611790565b5b5f82013567ffffffffffffffff811115611bcf57611bce611794565b5b611bdb84828501611b70565b91505092915050565b5f5f60408385031215611bfa57611bf9611790565b5b5f611c07858286016118fa565b9250506020611c18858286016118fa565b9150509250929050565b5f60208284031215611c3757611c36611790565b5b5f611c44848285016119a7565b91505092915050565b611c5681611818565b8114611c60575f5ffd5b50565b5f81359050611c7181611c4d565b92915050565b5f5f60408385031215611c8d57611c8c611790565b5b5f611c9a858286016119a7565b9250506020611cab85828601611c63565b9150509250929050565b5f67ffffffffffffffff821115611ccf57611cce611a79565b5b611cd882611873565b9050602081019050919050565b5f611cf7611cf284611cb5565b611ad7565b905082815260208101848484011115611d1357611d12611a75565b5b611d1e848285611b21565b509392505050565b5f82601f830112611d3a57611d39611a71565b5b8135611d4a848260208601611ce5565b91505092915050565b5f5f5f5f60808587031215611d6b57611d6a611790565b5b5f611d78878288016119a7565b9450506020611d89878288016119a7565b9350506040611d9a878288016118fa565b925050606085013567ffffffffffffffff811115611dbb57611dba611794565b5b611dc787828801611d26565b91505092959194509250565b5f5f60408385031215611de957611de8611790565b5b5f611df6858286016119a7565b9250506020611e07858286016119a7565b9150509250929050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f611e45600983611855565b9150611e5082611e11565b602082019050919050565b5f6020820190508181035f830152611e7281611e39565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611eb0826118db565b9150611ebb836118db565b9250828201905080821115611ed357611ed2611e79565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f611f0d600e83611855565b9150611f1882611ed9565b602082019050919050565b5f6020820190508181035f830152611f3a81611f01565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f8557607f821691505b602082108103611f9857611f97611f41565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302611ffa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fbf565b6120048683611fbf565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61203f61203a612035846118db565b61201c565b6118db565b9050919050565b5f819050919050565b61205883612025565b61206c61206482612046565b848454611fcb565b825550505050565b5f5f905090565b612083612074565b61208e81848461204f565b505050565b5b818110156120b1576120a65f8261207b565b600181019050612094565b5050565b601f8211156120f6576120c781611f9e565b6120d084611fb0565b810160208510156120df578190505b6120f36120eb85611fb0565b830182612093565b50505b505050565b5f82821c905092915050565b5f6121165f19846008026120fb565b1980831691505092915050565b5f61212e8383612107565b9150826002028217905092915050565b6121478261184b565b67ffffffffffffffff8111156121605761215f611a79565b5b61216a8254611f6e565b6121758282856120b5565b5f60209050601f8311600181146121a6575f8415612194578287015190505b61219e8582612123565b865550612205565b601f1984166121b486611f9e565b5f5b828110156121db578489015182556001820191506020850194506020810190506121b6565b868310156121f857848901516121f4601f891682612107565b8355505b6001600288020188555050505b505050505050565b5f612217826118db565b9150612222836118db565b925082820390508181111561223a57612239611e79565b5b92915050565b5f6060820190506122535f8301866119f9565b6122606020830185611969565b61226d60408301846119f9565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6122ac826118db565b91506122b7836118db565b9250826122c7576122c6612275565b5b828206905092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612306600883611855565b9150612311826122d2565b602082019050919050565b5f6020820190508181035f830152612333816122fa565b9050919050565b5f612344826118db565b915061234f836118db565b925082820261235d816118db565b9150828204841483151761237457612373611e79565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6123af600c83611855565b91506123ba8261237b565b602082019050919050565b5f6020820190508181035f8301526123dc816123a3565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6124216007836123e3565b915061242c826123ed565b600782019050919050565b5f6124418261184b565b61244b81856123e3565b935061245b818560208601611865565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f61249b6001836123e3565b91506124a682612467565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6124e56005836123e3565b91506124f0826124b1565b600582019050919050565b5f61250582612415565b91506125118285612437565b915061251c8261248f565b91506125288284612437565b9150612533826124d9565b9150819050939250505056fea2646970667358221220aaf8642ac3903bae491509d292f73ae325923db89ffec27706eb799044017eaf64736f6c634300081c0033
Deployed Bytecode Sourcemap
15533:21756:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20135:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24342:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26009:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25492:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15802:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19378:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26895:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36765:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15754:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37141:145;;;;;;;;;;;;;:::i;:::-;;27156:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18667:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36726:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36410:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24131:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20814:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15633:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30224:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24511:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16140:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26285:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27432:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15852:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24629:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26664:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30270:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20135:615;20220:4;20535:10;20520:25;;:11;:25;;;;:102;;;;20612:10;20597:25;;:11;:25;;;;20520:102;:179;;;;20689:10;20674:25;;:11;:25;;;;20520:179;20500:199;;20135:615;;;:::o;24342:100::-;24396:13;24429:5;;;;;;;;;;;;;;;;;24422:12;;24342:100;:::o;26009:204::-;26077:7;26102:16;26110:7;26102;:16::i;:::-;26097:64;;26127:34;;;;;;;;;;;;;;26097:64;26181:15;:24;26197:7;26181:24;;;;;;;;;;;;;;;;;;;;;26174:31;;26009:204;;;:::o;25492:451::-;25565:13;25597:27;25616:7;25597:18;:27::i;:::-;25565:61;;25647:5;25641:11;;:2;:11;;;25637:25;;25654:8;;;25637:25;25702:5;25679:28;;:19;:17;:19::i;:::-;:28;;;25675:175;;25727:44;25744:5;25751:19;:17;:19::i;:::-;25727:16;:44::i;:::-;25722:128;;25799:35;;;;;;;;;;;;;;25722:128;25675:175;25889:2;25862:15;:24;25878:7;25862:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25927:7;25923:2;25907:28;;25916:5;25907:28;;;;;;;;;;;;25554:389;25492:451;;:::o;15802:43::-;15843:2;15802:43;:::o;19378:300::-;19431:7;19644:15;:13;:15::i;:::-;19628:13;;:31;19621:38;;19378:300;:::o;26895:190::-;27049:28;27059:4;27065:2;27069:7;27049:9;:28::i;:::-;26895:190;;;:::o;36765:169::-;36991:10;36983:18;;:6;;;;;;;;;;;:18;;;36975:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;15791:4:::1;36852:6;36836:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;36828:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36901:25;36907:10;36919:6;36901:5;:25::i;:::-;36765:169:::0;:::o;15754:41::-;15791:4;15754:41;:::o;37141:145::-;36991:10;36983:18;;:6;;;;;;;;;;;:18;;;36975:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;37191:15:::1;37209:21;37191:39;;37249:10;37241:28;;:37;37270:7;37241:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37180:106;37141:145::o:0;27156:205::-;27314:39;27331:4;27337:2;27341:7;27314:39;;;;;;;;;;;;:16;:39::i;:::-;27156:205;;;:::o;18667:91::-;36991:10;36983:18;;:6;;;;;;;;;;;:18;;;36975:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;18745:5:::1;18734:8;:16;;;;;;:::i;:::-;;18667:91:::0;:::o;36726:32::-;;;;;;;;;;;;;:::o;36410:308::-;36491:7;36511:19;36548:1;36533:12;:16;;;;:::i;:::-;36511:38;;36593:17;36634:11;36647:10;36659:7;36623:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36613:55;;;;;;36593:75;;36707:3;36694:9;36686:18;;:24;;;;:::i;:::-;36679:31;;;;36410:308;;;;:::o;24131:144::-;24195:7;24238:27;24257:7;24238:18;:27::i;:::-;24215:52;;24131:144;;;:::o;20814:234::-;20878:7;20930:1;20902:24;20920:5;20902:17;:24::i;:::-;:29;20898:70;;20940:28;;;;;;;;;;;;;;20898:70;16518:13;20986:18;:25;21005:5;20986:25;;;;;;;;;;;;;;;;:54;20979:61;;20814:234;;;:::o;15633:77::-;15670:7;15696:6;;;;;;;;;;;15689:13;;15633:77;:::o;30224:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;24511:104::-;24567:13;24600:7;;;;;;;;;;;;;;;;;24593:14;;24511:104;:::o;16140:267::-;16197:15;16215:19;:17;:19::i;:::-;16197:37;;15791:4;16271:6;16255:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;16247:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;16338:9;15883;16323:6;:11;;;;:::i;:::-;:24;;16315:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;16377:22;16383:7;16392:6;16377:5;:22::i;:::-;16186:221;16140:267;:::o;26285:308::-;26396:19;:17;:19::i;:::-;26384:31;;:8;:31;;;26380:61;;26424:17;;;;;;;;;;;;;;26380:61;26506:8;26454:18;:39;26473:19;:17;:19::i;:::-;26454:39;;;;;;;;;;;;;;;:49;26494:8;26454:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26566:8;26530:55;;26545:19;:17;:19::i;:::-;26530:55;;;26576:8;26530:55;;;;;;:::i;:::-;;;;;;;;26285:308;;:::o;27432:227::-;27623:28;27633:4;27639:2;27643:7;27623:9;:28::i;:::-;27432:227;;;;:::o;15852:40::-;15883:9;15852:40;:::o;24629:339::-;24702:13;24733:16;24741:7;24733;:16::i;:::-;24728:59;;24758:29;;;;;;;;;;;;;;24728:59;24798:21;24822:8;24798:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24873:1;24854:7;24848:21;:26;:112;;;;;;;;;;;;;;;;;24912:7;24926:18;24936:7;24926:9;:18::i;:::-;24884:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24848:112;24841:119;;;24629:339;;;:::o;26664:164::-;26761:4;26785:18;:25;26804:5;26785:25;;;;;;;;;;;;;;;:35;26811:8;26785:35;;;;;;;;;;;;;;;;;;;;;;;;;26778:42;;26664:164;;;;:::o;30270:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27914:168::-;27971:4;28027:7;28008:15;:13;:15::i;:::-;:26;;:66;;;;;28061:13;;28051:7;:23;28008:66;27988:86;;27914:168;;;:::o;21646:1129::-;21713:7;21733:12;21748:7;21733:22;;21816:4;21797:15;:13;:15::i;:::-;:23;21793:915;;21850:13;;21843:4;:20;21839:869;;;21888:14;21905:17;:23;21923:4;21905:23;;;;;;;;;;;;21888:40;;22021:1;17288:8;21994:6;:23;:28;21990:699;;22513:113;22530:1;22520:6;:11;22513:113;;22573:17;:25;22591:6;;;;;;;22573:25;;;;;;;;;;;;22564:34;;22513:113;;;22659:6;22652:13;;;;;;21990:699;21865:843;21839:869;21793:915;22736:31;;;;;;;;;;;;;;21646:1129;;;;:::o;34309:105::-;34369:7;34396:10;34389:17;;34309:105;:::o;18901:92::-;18957:7;18984:1;18977:8;;18901:92;:::o;30299:2561::-;30440:27;30470;30489:7;30470:18;:27::i;:::-;30440:57;;30555:4;30514:45;;30530:19;30514:45;;;30510:86;;30568:28;;;;;;;;;;;;;;30510:86;30609:23;30635:15;:24;30651:7;30635:24;;;;;;;;;;;;;;;;;;;;;30609:50;;30672:22;30721:4;30698:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;30746:43;30763:4;30769:19;:17;:19::i;:::-;30746:16;:43::i;:::-;30698:91;:150;;;;30829:19;:17;:19::i;:::-;30810:38;;:15;:38;;;30698:150;30672:177;;30867:17;30862:66;;30893:35;;;;;;;;;;;;;;30862:66;31038:1;31000:34;31018:15;31000:17;:34::i;:::-;:39;30996:103;;31063:15;:24;31079:7;31063:24;;;;;;;;;;;;31056:31;;;;;;;;;;;30996:103;31466:18;:24;31485:4;31466:24;;;;;;;;;;;;;;;;31464:26;;;;;;;;;;;;31535:18;:22;31554:2;31535:22;;;;;;;;;;;;;;;;31533:24;;;;;;;;;;;17566:8;17172:3;31916:15;:41;;31874:21;31892:2;31874:17;:21::i;:::-;:84;:128;31828:17;:26;31846:7;31828:26;;;;;;;;;;;:174;;;;32172:1;17566:8;32122:19;:46;:51;32118:626;;32194:19;32226:1;32216:7;:11;32194:33;;32383:1;32349:17;:30;32367:11;32349:30;;;;;;;;;;;;:35;32345:384;;32487:13;;32472:11;:28;32468:242;;32667:19;32634:17;:30;32652:11;32634:30;;;;;;;;;;;:52;;;;32468:242;32345:384;32175:569;32118:626;32791:7;32787:2;32772:27;;32781:4;32772:27;;;;;;;;;;;;32810:42;32831:4;32837:2;32841:7;32850:1;32810:20;:42::i;:::-;30423:2437;;;30299:2561;;;:::o;28347:1596::-;28412:20;28435:13;;28412:36;;28546:1;28534:8;:13;28530:44;;28556:18;;;;;;;;;;;;;;28530:44;29119:1;16655:2;29090:1;:25;;29089:31;29077:8;:44;29051:18;:22;29070:2;29051:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;17431:3;29520:29;29547:1;29535:8;:13;29520:14;:29::i;:::-;:56;;17172:3;29457:15;:41;;29415:21;29433:2;29415:17;:21::i;:::-;:84;:162;29364:17;:31;29382:12;29364:31;;;;;;;;;;;:213;;;;29594:20;29617:12;29594:35;;29644:11;29673:8;29658:12;:23;29644:37;;29698:111;29750:14;;;;;;29746:2;29725:40;;29742:1;29725:40;;;;;;;;;;;;29804:3;29789:12;:18;29698:111;;29841:12;29825:13;:28;;;;28828:1037;;29875:60;29904:1;29908:2;29912:12;29926:8;29875:20;:60::i;:::-;28401:1542;28347:1596;;:::o;25053:148::-;25117:14;25178:5;25168:15;;25053:148;;;:::o;34520:1882::-;34577:17;34998:3;34991:4;34985:11;34981:21;34974:28;;35085:3;35079:4;35072:17;35185:3;35621:5;35753:1;35748:3;35744:11;35737:18;;35892:2;35886:4;35882:13;35878:2;35874:22;35869:3;35861:36;35934:2;35928:4;35924:13;35916:21;;35518:661;35950:4;35518:661;;;36118:1;36113:3;36109:11;36102:18;;36162:2;36156:4;36152:13;36148:2;36144:22;36139:3;36131:36;36035:2;36029:4;36025:13;36017:21;;35518:661;;;35522:427;36211:3;36206;36202:13;36320:2;36315:3;36311:12;36304:19;;36377:6;36372:3;36365:19;34616:1779;;34520:1882;;;:::o;33891:213::-;;;;;:::o;25288:142::-;25346:14;25407:5;25397:15;;25288:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:117::-;5869:1;5866;5859:12;5883:117;5992:1;5989;5982:12;6006:180;6054:77;6051:1;6044:88;6151:4;6148:1;6141:15;6175:4;6172:1;6165:15;6192:281;6275:27;6297:4;6275:27;:::i;:::-;6267:6;6263:40;6405:6;6393:10;6390:22;6369:18;6357:10;6354:34;6351:62;6348:88;;;6416:18;;:::i;:::-;6348:88;6456:10;6452:2;6445:22;6235:238;6192:281;;:::o;6479:129::-;6513:6;6540:20;;:::i;:::-;6530:30;;6569:33;6597:4;6589:6;6569:33;:::i;:::-;6479:129;;;:::o;6614:308::-;6676:4;6766:18;6758:6;6755:30;6752:56;;;6788:18;;:::i;:::-;6752:56;6826:29;6848:6;6826:29;:::i;:::-;6818:37;;6910:4;6904;6900:15;6892:23;;6614:308;;;:::o;6928:148::-;7026:6;7021:3;7016;7003:30;7067:1;7058:6;7053:3;7049:16;7042:27;6928:148;;;:::o;7082:425::-;7160:5;7185:66;7201:49;7243:6;7201:49;:::i;:::-;7185:66;:::i;:::-;7176:75;;7274:6;7267:5;7260:21;7312:4;7305:5;7301:16;7350:3;7341:6;7336:3;7332:16;7329:25;7326:112;;;7357:79;;:::i;:::-;7326:112;7447:54;7494:6;7489:3;7484;7447:54;:::i;:::-;7166:341;7082:425;;;;;:::o;7527:340::-;7583:5;7632:3;7625:4;7617:6;7613:17;7609:27;7599:122;;7640:79;;:::i;:::-;7599:122;7757:6;7744:20;7782:79;7857:3;7849:6;7842:4;7834:6;7830:17;7782:79;:::i;:::-;7773:88;;7589:278;7527:340;;;;:::o;7873:509::-;7942:6;7991:2;7979:9;7970:7;7966:23;7962:32;7959:119;;;7997:79;;:::i;:::-;7959:119;8145:1;8134:9;8130:17;8117:31;8175:18;8167:6;8164:30;8161:117;;;8197:79;;:::i;:::-;8161:117;8302:63;8357:7;8348:6;8337:9;8333:22;8302:63;:::i;:::-;8292:73;;8088:287;7873:509;;;;:::o;8388:474::-;8456:6;8464;8513:2;8501:9;8492:7;8488:23;8484:32;8481:119;;;8519:79;;:::i;:::-;8481:119;8639:1;8664:53;8709:7;8700:6;8689:9;8685:22;8664:53;:::i;:::-;8654:63;;8610:117;8766:2;8792:53;8837:7;8828:6;8817:9;8813:22;8792:53;:::i;:::-;8782:63;;8737:118;8388:474;;;;;:::o;8868:329::-;8927:6;8976:2;8964:9;8955:7;8951:23;8947:32;8944:119;;;8982:79;;:::i;:::-;8944:119;9102:1;9127:53;9172:7;9163:6;9152:9;9148:22;9127:53;:::i;:::-;9117:63;;9073:117;8868:329;;;;:::o;9203:116::-;9273:21;9288:5;9273:21;:::i;:::-;9266:5;9263:32;9253:60;;9309:1;9306;9299:12;9253:60;9203:116;:::o;9325:133::-;9368:5;9406:6;9393:20;9384:29;;9422:30;9446:5;9422:30;:::i;:::-;9325:133;;;;:::o;9464:468::-;9529:6;9537;9586:2;9574:9;9565:7;9561:23;9557:32;9554:119;;;9592:79;;:::i;:::-;9554:119;9712:1;9737:53;9782:7;9773:6;9762:9;9758:22;9737:53;:::i;:::-;9727:63;;9683:117;9839:2;9865:50;9907:7;9898:6;9887:9;9883:22;9865:50;:::i;:::-;9855:60;;9810:115;9464:468;;;;;:::o;9938:307::-;9999:4;10089:18;10081:6;10078:30;10075:56;;;10111:18;;:::i;:::-;10075:56;10149:29;10171:6;10149:29;:::i;:::-;10141:37;;10233:4;10227;10223:15;10215:23;;9938:307;;;:::o;10251:423::-;10328:5;10353:65;10369:48;10410:6;10369:48;:::i;:::-;10353:65;:::i;:::-;10344:74;;10441:6;10434:5;10427:21;10479:4;10472:5;10468:16;10517:3;10508:6;10503:3;10499:16;10496:25;10493:112;;;10524:79;;:::i;:::-;10493:112;10614:54;10661:6;10656:3;10651;10614:54;:::i;:::-;10334:340;10251:423;;;;;:::o;10693:338::-;10748:5;10797:3;10790:4;10782:6;10778:17;10774:27;10764:122;;10805:79;;:::i;:::-;10764:122;10922:6;10909:20;10947:78;11021:3;11013:6;11006:4;10998:6;10994:17;10947:78;:::i;:::-;10938:87;;10754:277;10693:338;;;;:::o;11037:943::-;11132:6;11140;11148;11156;11205:3;11193:9;11184:7;11180:23;11176:33;11173:120;;;11212:79;;:::i;:::-;11173:120;11332:1;11357:53;11402:7;11393:6;11382:9;11378:22;11357:53;:::i;:::-;11347:63;;11303:117;11459:2;11485:53;11530:7;11521:6;11510:9;11506:22;11485:53;:::i;:::-;11475:63;;11430:118;11587:2;11613:53;11658:7;11649:6;11638:9;11634:22;11613:53;:::i;:::-;11603:63;;11558:118;11743:2;11732:9;11728:18;11715:32;11774:18;11766:6;11763:30;11760:117;;;11796:79;;:::i;:::-;11760:117;11901:62;11955:7;11946:6;11935:9;11931:22;11901:62;:::i;:::-;11891:72;;11686:287;11037:943;;;;;;;:::o;11986:474::-;12054:6;12062;12111:2;12099:9;12090:7;12086:23;12082:32;12079:119;;;12117:79;;:::i;:::-;12079:119;12237:1;12262:53;12307:7;12298:6;12287:9;12283:22;12262:53;:::i;:::-;12252:63;;12208:117;12364:2;12390:53;12435:7;12426:6;12415:9;12411:22;12390:53;:::i;:::-;12380:63;;12335:118;11986:474;;;;;:::o;12466:159::-;12606:11;12602:1;12594:6;12590:14;12583:35;12466:159;:::o;12631:365::-;12773:3;12794:66;12858:1;12853:3;12794:66;:::i;:::-;12787:73;;12869:93;12958:3;12869:93;:::i;:::-;12987:2;12982:3;12978:12;12971:19;;12631:365;;;:::o;13002:419::-;13168:4;13206:2;13195:9;13191:18;13183:26;;13255:9;13249:4;13245:20;13241:1;13230:9;13226:17;13219:47;13283:131;13409:4;13283:131;:::i;:::-;13275:139;;13002:419;;;:::o;13427:180::-;13475:77;13472:1;13465:88;13572:4;13569:1;13562:15;13596:4;13593:1;13586:15;13613:191;13653:3;13672:20;13690:1;13672:20;:::i;:::-;13667:25;;13706:20;13724:1;13706:20;:::i;:::-;13701:25;;13749:1;13746;13742:9;13735:16;;13770:3;13767:1;13764:10;13761:36;;;13777:18;;:::i;:::-;13761:36;13613:191;;;;:::o;13810:164::-;13950:16;13946:1;13938:6;13934:14;13927:40;13810:164;:::o;13980:366::-;14122:3;14143:67;14207:2;14202:3;14143:67;:::i;:::-;14136:74;;14219:93;14308:3;14219:93;:::i;:::-;14337:2;14332:3;14328:12;14321:19;;13980:366;;;:::o;14352:419::-;14518:4;14556:2;14545:9;14541:18;14533:26;;14605:9;14599:4;14595:20;14591:1;14580:9;14576:17;14569:47;14633:131;14759:4;14633:131;:::i;:::-;14625:139;;14352:419;;;:::o;14777:180::-;14825:77;14822:1;14815:88;14922:4;14919:1;14912:15;14946:4;14943:1;14936:15;14963:320;15007:6;15044:1;15038:4;15034:12;15024:22;;15091:1;15085:4;15081:12;15112:18;15102:81;;15168:4;15160:6;15156:17;15146:27;;15102:81;15230:2;15222:6;15219:14;15199:18;15196:38;15193:84;;15249:18;;:::i;:::-;15193:84;15014:269;14963:320;;;:::o;15289:141::-;15338:4;15361:3;15353:11;;15384:3;15381:1;15374:14;15418:4;15415:1;15405:18;15397:26;;15289:141;;;:::o;15436:93::-;15473:6;15520:2;15515;15508:5;15504:14;15500:23;15490:33;;15436:93;;;:::o;15535:107::-;15579:8;15629:5;15623:4;15619:16;15598:37;;15535:107;;;;:::o;15648:393::-;15717:6;15767:1;15755:10;15751:18;15790:97;15820:66;15809:9;15790:97;:::i;:::-;15908:39;15938:8;15927:9;15908:39;:::i;:::-;15896:51;;15980:4;15976:9;15969:5;15965:21;15956:30;;16029:4;16019:8;16015:19;16008:5;16005:30;15995:40;;15724:317;;15648:393;;;;;:::o;16047:60::-;16075:3;16096:5;16089:12;;16047:60;;;:::o;16113:142::-;16163:9;16196:53;16214:34;16223:24;16241:5;16223:24;:::i;:::-;16214:34;:::i;:::-;16196:53;:::i;:::-;16183:66;;16113:142;;;:::o;16261:75::-;16304:3;16325:5;16318:12;;16261:75;;;:::o;16342:269::-;16452:39;16483:7;16452:39;:::i;:::-;16513:91;16562:41;16586:16;16562:41;:::i;:::-;16554:6;16547:4;16541:11;16513:91;:::i;:::-;16507:4;16500:105;16418:193;16342:269;;;:::o;16617:73::-;16662:3;16683:1;16676:8;;16617:73;:::o;16696:189::-;16773:32;;:::i;:::-;16814:65;16872:6;16864;16858:4;16814:65;:::i;:::-;16749:136;16696:189;;:::o;16891:186::-;16951:120;16968:3;16961:5;16958:14;16951:120;;;17022:39;17059:1;17052:5;17022:39;:::i;:::-;16995:1;16988:5;16984:13;16975:22;;16951:120;;;16891:186;;:::o;17083:543::-;17184:2;17179:3;17176:11;17173:446;;;17218:38;17250:5;17218:38;:::i;:::-;17302:29;17320:10;17302:29;:::i;:::-;17292:8;17288:44;17485:2;17473:10;17470:18;17467:49;;;17506:8;17491:23;;17467:49;17529:80;17585:22;17603:3;17585:22;:::i;:::-;17575:8;17571:37;17558:11;17529:80;:::i;:::-;17188:431;;17173:446;17083:543;;;:::o;17632:117::-;17686:8;17736:5;17730:4;17726:16;17705:37;;17632:117;;;;:::o;17755:169::-;17799:6;17832:51;17880:1;17876:6;17868:5;17865:1;17861:13;17832:51;:::i;:::-;17828:56;17913:4;17907;17903:15;17893:25;;17806:118;17755:169;;;;:::o;17929:295::-;18005:4;18151:29;18176:3;18170:4;18151:29;:::i;:::-;18143:37;;18213:3;18210:1;18206:11;18200:4;18197:21;18189:29;;17929:295;;;;:::o;18229:1395::-;18346:37;18379:3;18346:37;:::i;:::-;18448:18;18440:6;18437:30;18434:56;;;18470:18;;:::i;:::-;18434:56;18514:38;18546:4;18540:11;18514:38;:::i;:::-;18599:67;18659:6;18651;18645:4;18599:67;:::i;:::-;18693:1;18717:4;18704:17;;18749:2;18741:6;18738:14;18766:1;18761:618;;;;19423:1;19440:6;19437:77;;;19489:9;19484:3;19480:19;19474:26;19465:35;;19437:77;19540:67;19600:6;19593:5;19540:67;:::i;:::-;19534:4;19527:81;19396:222;18731:887;;18761:618;18813:4;18809:9;18801:6;18797:22;18847:37;18879:4;18847:37;:::i;:::-;18906:1;18920:208;18934:7;18931:1;18928:14;18920:208;;;19013:9;19008:3;19004:19;18998:26;18990:6;18983:42;19064:1;19056:6;19052:14;19042:24;;19111:2;19100:9;19096:18;19083:31;;18957:4;18954:1;18950:12;18945:17;;18920:208;;;19156:6;19147:7;19144:19;19141:179;;;19214:9;19209:3;19205:19;19199:26;19257:48;19299:4;19291:6;19287:17;19276:9;19257:48;:::i;:::-;19249:6;19242:64;19164:156;19141:179;19366:1;19362;19354:6;19350:14;19346:22;19340:4;19333:36;18768:611;;;18731:887;;18321:1303;;;18229:1395;;:::o;19630:194::-;19670:4;19690:20;19708:1;19690:20;:::i;:::-;19685:25;;19724:20;19742:1;19724:20;:::i;:::-;19719:25;;19768:1;19765;19761:9;19753:17;;19792:1;19786:4;19783:11;19780:37;;;19797:18;;:::i;:::-;19780:37;19630:194;;;;:::o;19830:442::-;19979:4;20017:2;20006:9;20002:18;19994:26;;20030:71;20098:1;20087:9;20083:17;20074:6;20030:71;:::i;:::-;20111:72;20179:2;20168:9;20164:18;20155:6;20111:72;:::i;:::-;20193;20261:2;20250:9;20246:18;20237:6;20193:72;:::i;:::-;19830:442;;;;;;:::o;20278:180::-;20326:77;20323:1;20316:88;20423:4;20420:1;20413:15;20447:4;20444:1;20437:15;20464:176;20496:1;20513:20;20531:1;20513:20;:::i;:::-;20508:25;;20547:20;20565:1;20547:20;:::i;:::-;20542:25;;20586:1;20576:35;;20591:18;;:::i;:::-;20576:35;20632:1;20629;20625:9;20620:14;;20464:176;;;;:::o;20646:158::-;20786:10;20782:1;20774:6;20770:14;20763:34;20646:158;:::o;20810:365::-;20952:3;20973:66;21037:1;21032:3;20973:66;:::i;:::-;20966:73;;21048:93;21137:3;21048:93;:::i;:::-;21166:2;21161:3;21157:12;21150:19;;20810:365;;;:::o;21181:419::-;21347:4;21385:2;21374:9;21370:18;21362:26;;21434:9;21428:4;21424:20;21420:1;21409:9;21405:17;21398:47;21462:131;21588:4;21462:131;:::i;:::-;21454:139;;21181:419;;;:::o;21606:410::-;21646:7;21669:20;21687:1;21669:20;:::i;:::-;21664:25;;21703:20;21721:1;21703:20;:::i;:::-;21698:25;;21758:1;21755;21751:9;21780:30;21798:11;21780:30;:::i;:::-;21769:41;;21959:1;21950:7;21946:15;21943:1;21940:22;21920:1;21913:9;21893:83;21870:139;;21989:18;;:::i;:::-;21870:139;21654:362;21606:410;;;;:::o;22022:162::-;22162:14;22158:1;22150:6;22146:14;22139:38;22022:162;:::o;22190:366::-;22332:3;22353:67;22417:2;22412:3;22353:67;:::i;:::-;22346:74;;22429:93;22518:3;22429:93;:::i;:::-;22547:2;22542:3;22538:12;22531:19;;22190:366;;;:::o;22562:419::-;22728:4;22766:2;22755:9;22751:18;22743:26;;22815:9;22809:4;22805:20;22801:1;22790:9;22786:17;22779:47;22843:131;22969:4;22843:131;:::i;:::-;22835:139;;22562:419;;;:::o;22987:148::-;23089:11;23126:3;23111:18;;22987:148;;;;:::o;23141:161::-;23281:9;23277:1;23269:6;23265:14;23258:33;23141:161;:::o;23312:416::-;23472:3;23497:84;23579:1;23574:3;23497:84;:::i;:::-;23490:91;;23594:93;23683:3;23594:93;:::i;:::-;23716:1;23711:3;23707:11;23700:18;;23312:416;;;:::o;23738:410::-;23844:3;23876:39;23909:5;23876:39;:::i;:::-;23935:89;24017:6;24012:3;23935:89;:::i;:::-;23928:96;;24037:65;24095:6;24090:3;24083:4;24076:5;24072:16;24037:65;:::i;:::-;24131:6;24126:3;24122:16;24115:23;;23848:300;23738:410;;;;:::o;24158:159::-;24302:3;24298:1;24290:6;24286:14;24279:27;24158:159;:::o;24327:416::-;24487:3;24512:84;24594:1;24589:3;24512:84;:::i;:::-;24505:91;;24609:93;24698:3;24609:93;:::i;:::-;24731:1;24726:3;24722:11;24715:18;;24327:416;;;:::o;24753:163::-;24897:7;24893:1;24885:6;24881:14;24874:31;24753:163;:::o;24926:416::-;25086:3;25111:84;25193:1;25188:3;25111:84;:::i;:::-;25104:91;;25208:93;25297:3;25208:93;:::i;:::-;25330:1;25325:3;25321:11;25314:18;;24926:416;;;:::o;25352:1261::-;25835:3;25861:148;26005:3;25861:148;:::i;:::-;25854:155;;26030:95;26121:3;26112:6;26030:95;:::i;:::-;26023:102;;26146:148;26290:3;26146:148;:::i;:::-;26139:155;;26315:95;26406:3;26397:6;26315:95;:::i;:::-;26308:102;;26431:148;26575:3;26431:148;:::i;:::-;26424:155;;26600:3;26593:10;;25352:1261;;;;;:::o
Swarm Source
ipfs://aaf8642ac3903bae491509d292f73ae325923db89ffec27706eb799044017eaf
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.