NFT
Overview
TokenID
0
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BlindBox
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: None pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; abstract contract BearHoodInterface { function openBox(address to) public virtual returns(uint256); } abstract contract ERC721 { function ownerOf(uint256 tokenId) public view virtual returns (address); } contract BlindBox is ERC1155, Ownable, ERC1155Burnable { using SafeMath for uint256; string public name; string public symbol; uint256 tokenId = 0; uint256 amountMinted = 0; uint256 public TotalAmount = 10000; uint256 private tokenPrice = 10000000000000000; // 0.01 ETH uint256 minPrice = 10000000000000000; address bearhoodContractAddress; mapping (address => mapping (uint256 => bool)) openedBoxes; event BearRevealed(address indexed owner, uint256 indexed bearId); bool salesStarted = false; bool openBoxStarted = false; //Price Adjustment uint256 increaseBuffer; uint256 decreaseBuffer; uint256 increaseRate = 20000000000000000; // 0.02 ETH uint256 decreaseRate = 10000000000000000; // 0.01 ETH constructor( string memory _uri ) ERC1155(_uri) { name = "BearBox"; symbol = unicode"❣"; increaseBuffer = block.timestamp; decreaseBuffer = block.timestamp; } function totalSupply() public view returns(uint256) { return amountMinted; } function setBearContract(address contractAddress) public onlyOwner { bearhoodContractAddress = contractAddress; } function toggleSales() public onlyOwner { salesStarted = !salesStarted; } function toggleBoxOpen() public onlyOwner { openBoxStarted = !openBoxStarted; } function buyBox(uint256 _amount) public payable returns(uint256) { require(salesStarted == true, "Sales have not started"); uint256 current = currentPrice(); require(msg.value >= current.mul(_amount), "Not enough money"); require(_amount + amountMinted <= TotalAmount, "Limit reached"); amountMinted = amountMinted + _amount; _mint(msg.sender, tokenId, _amount, ""); _priceAdjustment(); return amountMinted; } function airdrop(address[] memory receivers, uint256[] memory amounts) public onlyOwner { for(uint256 i; i<receivers.length; i++){ require(amounts[i] + amountMinted <= TotalAmount, "Limit reached"); amountMinted = amountMinted + amounts[i]; _mint(receivers[i], tokenId, amounts[i], ""); } } function revealBear() public returns(uint256) { require(openBoxStarted == true, "OpenBox has not started"); require(balanceOf(msg.sender, tokenId) > 0, "Doesn't own the token"); burn(msg.sender, tokenId, 1); BearHoodInterface bearhoodContract = BearHoodInterface(bearhoodContractAddress); uint256 mintedId = bearhoodContract.openBox(msg.sender); emit BearRevealed(msg.sender, mintedId); return mintedId; } function currentPrice() public view returns(uint256) { uint256 timeGap = block.timestamp.sub(decreaseBuffer); uint256 range = timeGap.div(28800); if(range.mul(decreaseRate) >= tokenPrice.add(minPrice)){ return minPrice; } else { return tokenPrice.sub(range.mul(decreaseRate)); } } function _priceAdjustment() internal returns(uint256) { uint256 current = currentPrice(); uint256 increaseGap = block.timestamp.sub(increaseBuffer); if(increaseGap >= 28800){ tokenPrice = current.add(increaseRate); increaseBuffer = block.timestamp; decreaseBuffer = block.timestamp; } else { decreaseBuffer = block.timestamp; } return tokenPrice; } function setPrice(uint256 _newPrice) public onlyOwner { tokenPrice = _newPrice; } function withdrawFunds() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ 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 substraction 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; } } }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"bearId","type":"uint256"}],"name":"BearRevealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"TotalAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buyBox","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealBear","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"address","name":"contractAddress","type":"address"}],"name":"setBearContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleBoxOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006006819055600755612710600855662386f26fc100006009819055600a819055600d805461ffff1916905566470de4df8200006010556011553480156200004c57600080fd5b5060405162002ada38038062002ada8339810160408190526200006f9162000213565b806200007b81620000fe565b50620000906200008a62000117565b6200011b565b60408051808201909152600780825266084cac2e484def60cb1b6020909201918252620000c0916004916200016d565b5060408051808201909152600380825262e29da360e81b6020909201918252620000ed916005916200016d565b505042600e819055600f5562000335565b8051620001139060029060208401906200016d565b5050565b3390565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017b90620002e2565b90600052602060002090601f0160209004810192826200019f5760008555620001ea565b82601f10620001ba57805160ff1916838001178555620001ea565b82800160010185558215620001ea579182015b82811115620001ea578251825591602001919060010190620001cd565b50620001f8929150620001fc565b5090565b5b80821115620001f85760008155600101620001fd565b6000602080838503121562000226578182fd5b82516001600160401b03808211156200023d578384fd5b818501915085601f83011262000251578384fd5b8151818111156200026657620002666200031f565b604051601f8201601f19168101850183811182821017156200028c576200028c6200031f565b6040528181528382018501881015620002a3578586fd5b8592505b81831015620002c65783830185015181840186015291840191620002a7565b81831115620002d757858583830101525b979650505050505050565b600281046001821680620002f757607f821691505b602082108114156200031957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61279580620003456000396000f3fe6080604052600436106101805760003560e01c8063715018a6116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c51461040b578063f242432a1461042b578063f2fde38b1461044b578063f5298aca1461046b57610180565b8063a22cb465146103c1578063b12e55da146103e1578063dbd30ae0146103f657610180565b8063715018a61461032b5780637eb9f571146103405780638da5cb5b1461035557806391b7f5ed1461037757806395d89b41146103975780639d1b464a146103ac57610180565b80632eb2c2d61161013e57806345b98e321161011857806345b98e321461029e5780634e1273f4146102be57806367243482146102eb5780636b20c4541461030b57610180565b80632eb2c2d6146102565780633c53a403146102765780633e0493431461028b57610180565b8062fdd58e1461018557806301ffc9a7146101bb57806306fdde03146101e85780630e89341c1461020a57806318160ddd1461022a57806324600fc31461023f575b600080fd5b34801561019157600080fd5b506101a56101a0366004611d18565b61048b565b6040516101b29190612549565b60405180910390f35b3480156101c757600080fd5b506101db6101d6366004611e31565b6104e2565b6040516101b29190612016565b3480156101f457600080fd5b506101fd61052a565b6040516101b29190612021565b34801561021657600080fd5b506101fd610225366004611e69565b6105b8565b34801561023657600080fd5b506101a561064c565b34801561024b57600080fd5b50610254610653565b005b34801561026257600080fd5b50610254610271366004611b64565b6106c1565b34801561028257600080fd5b5061025461071f565b6101a5610299366004611e69565b61077b565b3480156102aa57600080fd5b506102546102b9366004611b18565b61084c565b3480156102ca57600080fd5b506102de6102d9366004611d73565b6108ad565b6040516101b29190611fd5565b3480156102f757600080fd5b50610254610306366004611d73565b6109cd565b34801561031757600080fd5b50610254610326366004611c6d565b610b2b565b34801561033757600080fd5b50610254610b80565b34801561034c57600080fd5b506101a5610bcb565b34801561036157600080fd5b5061036a610bd1565b6040516101b29190611f1e565b34801561038357600080fd5b50610254610392366004611e69565b610be0565b3480156103a357600080fd5b506101fd610c24565b3480156103b857600080fd5b506101a5610c31565b3480156103cd57600080fd5b506102546103dc366004611cde565b610cbb565b3480156103ed57600080fd5b506101a5610cd1565b34801561040257600080fd5b50610254610df7565b34801561041757600080fd5b506101db610426366004611b32565b610e4a565b34801561043757600080fd5b50610254610446366004611c0a565b610e78565b34801561045757600080fd5b50610254610466366004611b18565b610ecf565b34801561047757600080fd5b50610254610486366004611d41565b610f3d565b60006001600160a01b0383166104bc5760405162461bcd60e51b81526004016104b3906120fa565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061051357506001600160e01b031982166303a24d0760e21b145b80610522575061052282610f92565b90505b919050565b600480546105379061261c565b80601f01602080910402602001604051908101604052809291908181526020018280546105639061261c565b80156105b05780601f10610585576101008083540402835291602001916105b0565b820191906000526020600020905b81548152906001019060200180831161059357829003601f168201915b505050505081565b6060600280546105c79061261c565b80601f01602080910402602001604051908101604052809291908181526020018280546105f39061261c565b80156106405780601f1061061557610100808354040283529160200191610640565b820191906000526020600020905b81548152906001019060200180831161062357829003601f168201915b50505050509050919050565b6007545b90565b61065b610fab565b6001600160a01b031661066c610bd1565b6001600160a01b0316146106925760405162461bcd60e51b81526004016104b3906123c2565b60405133904780156108fc02916000818181858888f193505050501580156106be573d6000803e3d6000fd5b50565b6106c9610fab565b6001600160a01b0316856001600160a01b031614806106ef57506106ef85610426610fab565b61070b5760405162461bcd60e51b81526004016104b3906122e3565b6107188585858585610faf565b5050505050565b610727610fab565b6001600160a01b0316610738610bd1565b6001600160a01b03161461075e5760405162461bcd60e51b81526004016104b3906123c2565b600d805461ff001981166101009182900460ff1615909102179055565b600d5460009060ff1615156001146107a55760405162461bcd60e51b81526004016104b39061226e565b60006107af610c31565b90506107bb8184611180565b3410156107da5760405162461bcd60e51b81526004016104b3906120d0565b6008546007546107ea90856125ae565b11156108085760405162461bcd60e51b81526004016104b390612247565b8260075461081691906125ae565b600781905550610839336006548560405180602001604052806000815250611193565b610841611282565b505060075492915050565b610854610fab565b6001600160a01b0316610865610bd1565b6001600160a01b03161461088b5760405162461bcd60e51b81526004016104b3906123c2565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b606081518351146108d05760405162461bcd60e51b81526004016104b390612477565b6000835167ffffffffffffffff8111156108fa57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610923578160200160208202803683370190505b50905060005b84518110156109c55761098a85828151811061095557634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061097d57634e487b7160e01b600052603260045260246000fd5b602002602001015161048b565b8282815181106109aa57634e487b7160e01b600052603260045260246000fd5b60209081029190910101526109be81612657565b9050610929565b509392505050565b6109d5610fab565b6001600160a01b03166109e6610bd1565b6001600160a01b031614610a0c5760405162461bcd60e51b81526004016104b3906123c2565b60005b8251811015610b2657600854600754838381518110610a3e57634e487b7160e01b600052603260045260246000fd5b6020026020010151610a5091906125ae565b1115610a6e5760405162461bcd60e51b81526004016104b390612247565b818181518110610a8e57634e487b7160e01b600052603260045260246000fd5b6020026020010151600754610aa391906125ae565b600781905550610b14838281518110610acc57634e487b7160e01b600052603260045260246000fd5b6020026020010151600654848481518110610af757634e487b7160e01b600052603260045260246000fd5b602002602001015160405180602001604052806000815250611193565b80610b1e81612657565b915050610a0f565b505050565b610b33610fab565b6001600160a01b0316836001600160a01b03161480610b595750610b5983610426610fab565b610b755760405162461bcd60e51b81526004016104b3906121fe565b610b268383836112df565b610b88610fab565b6001600160a01b0316610b99610bd1565b6001600160a01b031614610bbf5760405162461bcd60e51b81526004016104b3906123c2565b610bc96000611490565b565b60085481565b6003546001600160a01b031690565b610be8610fab565b6001600160a01b0316610bf9610bd1565b6001600160a01b031614610c1f5760405162461bcd60e51b81526004016104b3906123c2565b600955565b600580546105379061261c565b600080610c49600f54426114e290919063ffffffff16565b90506000610c59826170806114ee565b9050610c72600a546009546114fa90919063ffffffff16565b601154610c80908390611180565b10610c9157600a5492505050610650565b610cb2610ca96011548361118090919063ffffffff16565b600954906114e2565b92505050610650565b610ccd610cc6610fab565b8383611506565b5050565b600d5460009060ff610100909104161515600114610d015760405162461bcd60e51b81526004016104b3906123f7565b6000610d0f3360065461048b565b11610d2c5760405162461bcd60e51b81526004016104b39061218b565b610d3a336006546001610f3d565b600b5460405163190625d760e01b81526001600160a01b0390911690600090829063190625d790610d6f903390600401611f1e565b602060405180830381600087803b158015610d8957600080fd5b505af1158015610d9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190611e81565b604051909150819033907fa8c28b687367bedf39b8af260f8ffa966075ed4a5d57feaf2659e0d1a71c13ac90600090a391505090565b610dff610fab565b6001600160a01b0316610e10610bd1565b6001600160a01b031614610e365760405162461bcd60e51b81526004016104b3906123c2565b600d805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610e80610fab565b6001600160a01b0316856001600160a01b03161480610ea65750610ea685610426610fab565b610ec25760405162461bcd60e51b81526004016104b3906121fe565b61071885858585856115a9565b610ed7610fab565b6001600160a01b0316610ee8610bd1565b6001600160a01b031614610f0e5760405162461bcd60e51b81526004016104b3906123c2565b6001600160a01b038116610f345760405162461bcd60e51b81526004016104b390612145565b6106be81611490565b610f45610fab565b6001600160a01b0316836001600160a01b03161480610f6b5750610f6b83610426610fab565b610f875760405162461bcd60e51b81526004016104b3906121fe565b610b268383836116dd565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b8151835114610fd05760405162461bcd60e51b81526004016104b3906124c0565b6001600160a01b038416610ff65760405162461bcd60e51b81526004016104b39061229e565b6000611000610fab565b9050611010818787878787611178565b60005b845181101561111257600085828151811061103e57634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061106a57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156110ba5760405162461bcd60e51b81526004016104b390612378565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906110f79084906125ae565b925050819055505050508061110b90612657565b9050611013565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611162929190611fe8565b60405180910390a46111788187878787876117ec565b505050505050565b600061118c82846125e6565b9392505050565b6001600160a01b0384166111b95760405162461bcd60e51b81526004016104b390612508565b60006111c3610fab565b90506111e4816000876111d5886118fa565b6111de886118fa565b87611178565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906112149084906125ae565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161126b929190612552565b60405180910390a461071881600087878787611953565b60008061128d610c31565b905060006112a6600e54426114e290919063ffffffff16565b905061708081106112d0576010546112bf9083906114fa565b60095542600e819055600f556112d5565b42600f555b6009549250505090565b6001600160a01b0383166113055760405162461bcd60e51b81526004016104b390612335565b80518251146113265760405162461bcd60e51b81526004016104b3906124c0565b6000611330610fab565b905061135081856000868660405180602001604052806000815250611178565b60005b835181101561143157600084828151811061137e57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008483815181106113aa57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156113fa5760405162461bcd60e51b81526004016104b3906121ba565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061142981612657565b915050611353565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611482929190611fe8565b60405180910390a450505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061118c8284612605565b600061118c82846125c6565b600061118c82846125ae565b816001600160a01b0316836001600160a01b031614156115385760405162461bcd60e51b81526004016104b39061242e565b6001600160a01b0383811660008181526001602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061159c908590612016565b60405180910390a3505050565b6001600160a01b0384166115cf5760405162461bcd60e51b81526004016104b39061229e565b60006115d9610fab565b90506115ea8187876111d5886118fa565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561162b5760405162461bcd60e51b81526004016104b390612378565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906116689084906125ae565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516116be929190612552565b60405180910390a46116d4828888888888611953565b50505050505050565b6001600160a01b0383166117035760405162461bcd60e51b81526004016104b390612335565b600061170d610fab565b905061173d8185600061171f876118fa565b611728876118fa565b60405180602001604052806000815250611178565b6000838152602081815260408083206001600160a01b03881684529091529020548281101561177e5760405162461bcd60e51b81526004016104b3906121ba565b6000848152602081815260408083206001600160a01b03808a16808652919093528184208786039055905190918516907fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62906117dd9089908990612552565b60405180910390a45050505050565b6117fe846001600160a01b0316611a24565b156111785760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906118379089908990889088908890600401611f32565b602060405180830381600087803b15801561185157600080fd5b505af1925050508015611881575060408051601f3d908101601f1916820190925261187e91810190611e4d565b60015b6118ca5761188d6126a4565b8061189857506118b2565b8060405162461bcd60e51b81526004016104b39190612021565b60405162461bcd60e51b81526004016104b390612034565b6001600160e01b0319811663bc197c8160e01b146116d45760405162461bcd60e51b81526004016104b390612088565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061194257634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b611965846001600160a01b0316611a24565b156111785760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061199e9089908990889088908890600401611f90565b602060405180830381600087803b1580156119b857600080fd5b505af19250505080156119e8575060408051601f3d908101601f191682019092526119e591810190611e4d565b60015b6119f45761188d6126a4565b6001600160e01b0319811663f23a6e6160e01b146116d45760405162461bcd60e51b81526004016104b390612088565b3b151590565b80356001600160a01b038116811461052557600080fd5b600082601f830112611a51578081fd5b81356020611a66611a618361258a565b612560565b8281528181019085830183850287018401881015611a82578586fd5b855b85811015611aa057813584529284019290840190600101611a84565b5090979650505050505050565b600082601f830112611abd578081fd5b813567ffffffffffffffff811115611ad757611ad7612688565b611aea601f8201601f1916602001612560565b818152846020838601011115611afe578283fd5b816020850160208301379081016020019190915292915050565b600060208284031215611b29578081fd5b61118c82611a2a565b60008060408385031215611b44578081fd5b611b4d83611a2a565b9150611b5b60208401611a2a565b90509250929050565b600080600080600060a08688031215611b7b578081fd5b611b8486611a2a565b9450611b9260208701611a2a565b9350604086013567ffffffffffffffff80821115611bae578283fd5b611bba89838a01611a41565b94506060880135915080821115611bcf578283fd5b611bdb89838a01611a41565b93506080880135915080821115611bf0578283fd5b50611bfd88828901611aad565b9150509295509295909350565b600080600080600060a08688031215611c21578081fd5b611c2a86611a2a565b9450611c3860208701611a2a565b93506040860135925060608601359150608086013567ffffffffffffffff811115611c61578182fd5b611bfd88828901611aad565b600080600060608486031215611c81578283fd5b611c8a84611a2a565b9250602084013567ffffffffffffffff80821115611ca6578384fd5b611cb287838801611a41565b93506040860135915080821115611cc7578283fd5b50611cd486828701611a41565b9150509250925092565b60008060408385031215611cf0578182fd5b611cf983611a2a565b915060208301358015158114611d0d578182fd5b809150509250929050565b60008060408385031215611d2a578182fd5b611d3383611a2a565b946020939093013593505050565b600080600060608486031215611d55578283fd5b611d5e84611a2a565b95602085013595506040909401359392505050565b60008060408385031215611d85578182fd5b823567ffffffffffffffff80821115611d9c578384fd5b818501915085601f830112611daf578384fd5b81356020611dbf611a618361258a565b82815281810190858301838502870184018b1015611ddb578889fd5b8896505b84871015611e0457611df081611a2a565b835260019690960195918301918301611ddf565b5096505086013592505080821115611e1a578283fd5b50611e2785828601611a41565b9150509250929050565b600060208284031215611e42578081fd5b813561118c81612749565b600060208284031215611e5e578081fd5b815161118c81612749565b600060208284031215611e7a578081fd5b5035919050565b600060208284031215611e92578081fd5b5051919050565b6000815180845260208085019450808401835b83811015611ec857815187529582019590820190600101611eac565b509495945050505050565b60008151808452815b81811015611ef857602081850181015186830182015201611edc565b81811115611f095782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a060408201819052600090611f5e90830186611e99565b8281036060840152611f708186611e99565b90508281036080840152611f848185611ed3565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611fca90830184611ed3565b979650505050505050565b60006020825261118c6020830184611e99565b600060408252611ffb6040830185611e99565b828103602084015261200d8185611e99565b95945050505050565b901515815260200190565b60006020825261118c6020830184611ed3565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526010908201526f4e6f7420656e6f756768206d6f6e657960801b604082015260600190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601590820152742237b2b9b713ba1037bbb7103a3432903a37b5b2b760591b604082015260600190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b6020808252600d908201526c131a5b5a5d081c995858da1959609a1b604082015260600190565b60208082526016908201527514d85b195cc81a185d99481b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f4f70656e426f7820686173206e6f742073746172746564000000000000000000604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff8111828210171561258257612582612688565b604052919050565b600067ffffffffffffffff8211156125a4576125a4612688565b5060209081020190565b600082198211156125c1576125c1612672565b500190565b6000826125e157634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561260057612600612672565b500290565b60008282101561261757612617612672565b500390565b60028104600182168061263057607f821691505b6020821081141561265157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561266b5761266b612672565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d10156126b457610650565b600481823e6308c379a06126c8825161269e565b146126d257610650565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156127025750505050610650565b8284019250825191508082111561271c5750505050610650565b503d8301602082840101111561273457505050610650565b601f01601f1916810160200160405291505090565b6001600160e01b0319811681146106be57600080fdfea264697066735822122009bcfd2acb941ee2a3d642d75e8a4c7169b33cbd77faf5f6424267fcd4e7d17a64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d587370787353734e617a696d78476d6747526658376a464a5a6575583171526a76683565536253455371326d0000000000000000000000
Deployed Bytecode
0x6080604052600436106101805760003560e01c8063715018a6116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c51461040b578063f242432a1461042b578063f2fde38b1461044b578063f5298aca1461046b57610180565b8063a22cb465146103c1578063b12e55da146103e1578063dbd30ae0146103f657610180565b8063715018a61461032b5780637eb9f571146103405780638da5cb5b1461035557806391b7f5ed1461037757806395d89b41146103975780639d1b464a146103ac57610180565b80632eb2c2d61161013e57806345b98e321161011857806345b98e321461029e5780634e1273f4146102be57806367243482146102eb5780636b20c4541461030b57610180565b80632eb2c2d6146102565780633c53a403146102765780633e0493431461028b57610180565b8062fdd58e1461018557806301ffc9a7146101bb57806306fdde03146101e85780630e89341c1461020a57806318160ddd1461022a57806324600fc31461023f575b600080fd5b34801561019157600080fd5b506101a56101a0366004611d18565b61048b565b6040516101b29190612549565b60405180910390f35b3480156101c757600080fd5b506101db6101d6366004611e31565b6104e2565b6040516101b29190612016565b3480156101f457600080fd5b506101fd61052a565b6040516101b29190612021565b34801561021657600080fd5b506101fd610225366004611e69565b6105b8565b34801561023657600080fd5b506101a561064c565b34801561024b57600080fd5b50610254610653565b005b34801561026257600080fd5b50610254610271366004611b64565b6106c1565b34801561028257600080fd5b5061025461071f565b6101a5610299366004611e69565b61077b565b3480156102aa57600080fd5b506102546102b9366004611b18565b61084c565b3480156102ca57600080fd5b506102de6102d9366004611d73565b6108ad565b6040516101b29190611fd5565b3480156102f757600080fd5b50610254610306366004611d73565b6109cd565b34801561031757600080fd5b50610254610326366004611c6d565b610b2b565b34801561033757600080fd5b50610254610b80565b34801561034c57600080fd5b506101a5610bcb565b34801561036157600080fd5b5061036a610bd1565b6040516101b29190611f1e565b34801561038357600080fd5b50610254610392366004611e69565b610be0565b3480156103a357600080fd5b506101fd610c24565b3480156103b857600080fd5b506101a5610c31565b3480156103cd57600080fd5b506102546103dc366004611cde565b610cbb565b3480156103ed57600080fd5b506101a5610cd1565b34801561040257600080fd5b50610254610df7565b34801561041757600080fd5b506101db610426366004611b32565b610e4a565b34801561043757600080fd5b50610254610446366004611c0a565b610e78565b34801561045757600080fd5b50610254610466366004611b18565b610ecf565b34801561047757600080fd5b50610254610486366004611d41565b610f3d565b60006001600160a01b0383166104bc5760405162461bcd60e51b81526004016104b3906120fa565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061051357506001600160e01b031982166303a24d0760e21b145b80610522575061052282610f92565b90505b919050565b600480546105379061261c565b80601f01602080910402602001604051908101604052809291908181526020018280546105639061261c565b80156105b05780601f10610585576101008083540402835291602001916105b0565b820191906000526020600020905b81548152906001019060200180831161059357829003601f168201915b505050505081565b6060600280546105c79061261c565b80601f01602080910402602001604051908101604052809291908181526020018280546105f39061261c565b80156106405780601f1061061557610100808354040283529160200191610640565b820191906000526020600020905b81548152906001019060200180831161062357829003601f168201915b50505050509050919050565b6007545b90565b61065b610fab565b6001600160a01b031661066c610bd1565b6001600160a01b0316146106925760405162461bcd60e51b81526004016104b3906123c2565b60405133904780156108fc02916000818181858888f193505050501580156106be573d6000803e3d6000fd5b50565b6106c9610fab565b6001600160a01b0316856001600160a01b031614806106ef57506106ef85610426610fab565b61070b5760405162461bcd60e51b81526004016104b3906122e3565b6107188585858585610faf565b5050505050565b610727610fab565b6001600160a01b0316610738610bd1565b6001600160a01b03161461075e5760405162461bcd60e51b81526004016104b3906123c2565b600d805461ff001981166101009182900460ff1615909102179055565b600d5460009060ff1615156001146107a55760405162461bcd60e51b81526004016104b39061226e565b60006107af610c31565b90506107bb8184611180565b3410156107da5760405162461bcd60e51b81526004016104b3906120d0565b6008546007546107ea90856125ae565b11156108085760405162461bcd60e51b81526004016104b390612247565b8260075461081691906125ae565b600781905550610839336006548560405180602001604052806000815250611193565b610841611282565b505060075492915050565b610854610fab565b6001600160a01b0316610865610bd1565b6001600160a01b03161461088b5760405162461bcd60e51b81526004016104b3906123c2565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b606081518351146108d05760405162461bcd60e51b81526004016104b390612477565b6000835167ffffffffffffffff8111156108fa57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610923578160200160208202803683370190505b50905060005b84518110156109c55761098a85828151811061095557634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061097d57634e487b7160e01b600052603260045260246000fd5b602002602001015161048b565b8282815181106109aa57634e487b7160e01b600052603260045260246000fd5b60209081029190910101526109be81612657565b9050610929565b509392505050565b6109d5610fab565b6001600160a01b03166109e6610bd1565b6001600160a01b031614610a0c5760405162461bcd60e51b81526004016104b3906123c2565b60005b8251811015610b2657600854600754838381518110610a3e57634e487b7160e01b600052603260045260246000fd5b6020026020010151610a5091906125ae565b1115610a6e5760405162461bcd60e51b81526004016104b390612247565b818181518110610a8e57634e487b7160e01b600052603260045260246000fd5b6020026020010151600754610aa391906125ae565b600781905550610b14838281518110610acc57634e487b7160e01b600052603260045260246000fd5b6020026020010151600654848481518110610af757634e487b7160e01b600052603260045260246000fd5b602002602001015160405180602001604052806000815250611193565b80610b1e81612657565b915050610a0f565b505050565b610b33610fab565b6001600160a01b0316836001600160a01b03161480610b595750610b5983610426610fab565b610b755760405162461bcd60e51b81526004016104b3906121fe565b610b268383836112df565b610b88610fab565b6001600160a01b0316610b99610bd1565b6001600160a01b031614610bbf5760405162461bcd60e51b81526004016104b3906123c2565b610bc96000611490565b565b60085481565b6003546001600160a01b031690565b610be8610fab565b6001600160a01b0316610bf9610bd1565b6001600160a01b031614610c1f5760405162461bcd60e51b81526004016104b3906123c2565b600955565b600580546105379061261c565b600080610c49600f54426114e290919063ffffffff16565b90506000610c59826170806114ee565b9050610c72600a546009546114fa90919063ffffffff16565b601154610c80908390611180565b10610c9157600a5492505050610650565b610cb2610ca96011548361118090919063ffffffff16565b600954906114e2565b92505050610650565b610ccd610cc6610fab565b8383611506565b5050565b600d5460009060ff610100909104161515600114610d015760405162461bcd60e51b81526004016104b3906123f7565b6000610d0f3360065461048b565b11610d2c5760405162461bcd60e51b81526004016104b39061218b565b610d3a336006546001610f3d565b600b5460405163190625d760e01b81526001600160a01b0390911690600090829063190625d790610d6f903390600401611f1e565b602060405180830381600087803b158015610d8957600080fd5b505af1158015610d9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190611e81565b604051909150819033907fa8c28b687367bedf39b8af260f8ffa966075ed4a5d57feaf2659e0d1a71c13ac90600090a391505090565b610dff610fab565b6001600160a01b0316610e10610bd1565b6001600160a01b031614610e365760405162461bcd60e51b81526004016104b3906123c2565b600d805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610e80610fab565b6001600160a01b0316856001600160a01b03161480610ea65750610ea685610426610fab565b610ec25760405162461bcd60e51b81526004016104b3906121fe565b61071885858585856115a9565b610ed7610fab565b6001600160a01b0316610ee8610bd1565b6001600160a01b031614610f0e5760405162461bcd60e51b81526004016104b3906123c2565b6001600160a01b038116610f345760405162461bcd60e51b81526004016104b390612145565b6106be81611490565b610f45610fab565b6001600160a01b0316836001600160a01b03161480610f6b5750610f6b83610426610fab565b610f875760405162461bcd60e51b81526004016104b3906121fe565b610b268383836116dd565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b8151835114610fd05760405162461bcd60e51b81526004016104b3906124c0565b6001600160a01b038416610ff65760405162461bcd60e51b81526004016104b39061229e565b6000611000610fab565b9050611010818787878787611178565b60005b845181101561111257600085828151811061103e57634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061106a57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156110ba5760405162461bcd60e51b81526004016104b390612378565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906110f79084906125ae565b925050819055505050508061110b90612657565b9050611013565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611162929190611fe8565b60405180910390a46111788187878787876117ec565b505050505050565b600061118c82846125e6565b9392505050565b6001600160a01b0384166111b95760405162461bcd60e51b81526004016104b390612508565b60006111c3610fab565b90506111e4816000876111d5886118fa565b6111de886118fa565b87611178565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906112149084906125ae565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161126b929190612552565b60405180910390a461071881600087878787611953565b60008061128d610c31565b905060006112a6600e54426114e290919063ffffffff16565b905061708081106112d0576010546112bf9083906114fa565b60095542600e819055600f556112d5565b42600f555b6009549250505090565b6001600160a01b0383166113055760405162461bcd60e51b81526004016104b390612335565b80518251146113265760405162461bcd60e51b81526004016104b3906124c0565b6000611330610fab565b905061135081856000868660405180602001604052806000815250611178565b60005b835181101561143157600084828151811061137e57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008483815181106113aa57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156113fa5760405162461bcd60e51b81526004016104b3906121ba565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061142981612657565b915050611353565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611482929190611fe8565b60405180910390a450505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061118c8284612605565b600061118c82846125c6565b600061118c82846125ae565b816001600160a01b0316836001600160a01b031614156115385760405162461bcd60e51b81526004016104b39061242e565b6001600160a01b0383811660008181526001602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061159c908590612016565b60405180910390a3505050565b6001600160a01b0384166115cf5760405162461bcd60e51b81526004016104b39061229e565b60006115d9610fab565b90506115ea8187876111d5886118fa565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561162b5760405162461bcd60e51b81526004016104b390612378565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906116689084906125ae565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516116be929190612552565b60405180910390a46116d4828888888888611953565b50505050505050565b6001600160a01b0383166117035760405162461bcd60e51b81526004016104b390612335565b600061170d610fab565b905061173d8185600061171f876118fa565b611728876118fa565b60405180602001604052806000815250611178565b6000838152602081815260408083206001600160a01b03881684529091529020548281101561177e5760405162461bcd60e51b81526004016104b3906121ba565b6000848152602081815260408083206001600160a01b03808a16808652919093528184208786039055905190918516907fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62906117dd9089908990612552565b60405180910390a45050505050565b6117fe846001600160a01b0316611a24565b156111785760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906118379089908990889088908890600401611f32565b602060405180830381600087803b15801561185157600080fd5b505af1925050508015611881575060408051601f3d908101601f1916820190925261187e91810190611e4d565b60015b6118ca5761188d6126a4565b8061189857506118b2565b8060405162461bcd60e51b81526004016104b39190612021565b60405162461bcd60e51b81526004016104b390612034565b6001600160e01b0319811663bc197c8160e01b146116d45760405162461bcd60e51b81526004016104b390612088565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061194257634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b611965846001600160a01b0316611a24565b156111785760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061199e9089908990889088908890600401611f90565b602060405180830381600087803b1580156119b857600080fd5b505af19250505080156119e8575060408051601f3d908101601f191682019092526119e591810190611e4d565b60015b6119f45761188d6126a4565b6001600160e01b0319811663f23a6e6160e01b146116d45760405162461bcd60e51b81526004016104b390612088565b3b151590565b80356001600160a01b038116811461052557600080fd5b600082601f830112611a51578081fd5b81356020611a66611a618361258a565b612560565b8281528181019085830183850287018401881015611a82578586fd5b855b85811015611aa057813584529284019290840190600101611a84565b5090979650505050505050565b600082601f830112611abd578081fd5b813567ffffffffffffffff811115611ad757611ad7612688565b611aea601f8201601f1916602001612560565b818152846020838601011115611afe578283fd5b816020850160208301379081016020019190915292915050565b600060208284031215611b29578081fd5b61118c82611a2a565b60008060408385031215611b44578081fd5b611b4d83611a2a565b9150611b5b60208401611a2a565b90509250929050565b600080600080600060a08688031215611b7b578081fd5b611b8486611a2a565b9450611b9260208701611a2a565b9350604086013567ffffffffffffffff80821115611bae578283fd5b611bba89838a01611a41565b94506060880135915080821115611bcf578283fd5b611bdb89838a01611a41565b93506080880135915080821115611bf0578283fd5b50611bfd88828901611aad565b9150509295509295909350565b600080600080600060a08688031215611c21578081fd5b611c2a86611a2a565b9450611c3860208701611a2a565b93506040860135925060608601359150608086013567ffffffffffffffff811115611c61578182fd5b611bfd88828901611aad565b600080600060608486031215611c81578283fd5b611c8a84611a2a565b9250602084013567ffffffffffffffff80821115611ca6578384fd5b611cb287838801611a41565b93506040860135915080821115611cc7578283fd5b50611cd486828701611a41565b9150509250925092565b60008060408385031215611cf0578182fd5b611cf983611a2a565b915060208301358015158114611d0d578182fd5b809150509250929050565b60008060408385031215611d2a578182fd5b611d3383611a2a565b946020939093013593505050565b600080600060608486031215611d55578283fd5b611d5e84611a2a565b95602085013595506040909401359392505050565b60008060408385031215611d85578182fd5b823567ffffffffffffffff80821115611d9c578384fd5b818501915085601f830112611daf578384fd5b81356020611dbf611a618361258a565b82815281810190858301838502870184018b1015611ddb578889fd5b8896505b84871015611e0457611df081611a2a565b835260019690960195918301918301611ddf565b5096505086013592505080821115611e1a578283fd5b50611e2785828601611a41565b9150509250929050565b600060208284031215611e42578081fd5b813561118c81612749565b600060208284031215611e5e578081fd5b815161118c81612749565b600060208284031215611e7a578081fd5b5035919050565b600060208284031215611e92578081fd5b5051919050565b6000815180845260208085019450808401835b83811015611ec857815187529582019590820190600101611eac565b509495945050505050565b60008151808452815b81811015611ef857602081850181015186830182015201611edc565b81811115611f095782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a060408201819052600090611f5e90830186611e99565b8281036060840152611f708186611e99565b90508281036080840152611f848185611ed3565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611fca90830184611ed3565b979650505050505050565b60006020825261118c6020830184611e99565b600060408252611ffb6040830185611e99565b828103602084015261200d8185611e99565b95945050505050565b901515815260200190565b60006020825261118c6020830184611ed3565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526010908201526f4e6f7420656e6f756768206d6f6e657960801b604082015260600190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601590820152742237b2b9b713ba1037bbb7103a3432903a37b5b2b760591b604082015260600190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b6020808252600d908201526c131a5b5a5d081c995858da1959609a1b604082015260600190565b60208082526016908201527514d85b195cc81a185d99481b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f4f70656e426f7820686173206e6f742073746172746564000000000000000000604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff8111828210171561258257612582612688565b604052919050565b600067ffffffffffffffff8211156125a4576125a4612688565b5060209081020190565b600082198211156125c1576125c1612672565b500190565b6000826125e157634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561260057612600612672565b500290565b60008282101561261757612617612672565b500390565b60028104600182168061263057607f821691505b6020821081141561265157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561266b5761266b612672565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d10156126b457610650565b600481823e6308c379a06126c8825161269e565b146126d257610650565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156127025750505050610650565b8284019250825191508082111561271c5750505050610650565b503d8301602082840101111561273457505050610650565b601f01601f1916810160200160405291505090565b6001600160e01b0319811681146106be57600080fdfea264697066735822122009bcfd2acb941ee2a3d642d75e8a4c7169b33cbd77faf5f6424267fcd4e7d17a64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d587370787353734e617a696d78476d6747526658376a464a5a6575583171526a76683565536253455371326d0000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmXspxsSsNazimxGmgGRfX7jFJZeuX1qRjvh5eSbSESq2m
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d587370787353734e617a696d78476d6747526658376a46
Arg [3] : 4a5a6575583171526a76683565536253455371326d0000000000000000000000
Deployed Bytecode Sourcemap
523:3761:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2170:228:2;;;;;;;;;;-1:-1:-1;2170:228:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1221:305;;;;;;;;;;-1:-1:-1;1221:305:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;617:18:0:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1925:103:2:-;;;;;;;;;;-1:-1:-1;1925:103:2;;;;;:::i;:::-;;:::i;1552:88:0:-;;;;;;;;;;;;;:::i;4181:101::-;;;;;;;;;;;;;:::i;:::-;;4045:430:2;;;;;;;;;;-1:-1:-1;4045:430:2;;;;;:::i;:::-;;:::i;1867:91:0:-;;;;;;;;;;;;;:::i;1964:477::-;;;;;;:::i;:::-;;:::i;1646:125::-;;;;;;;;;;-1:-1:-1;1646:125:0;;;;;:::i;:::-;;:::i;2555:508:2:-;;;;;;;;;;-1:-1:-1;2555:508:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2447:346:0:-;;;;;;;;;;-1:-1:-1;2447:346:0;;;;;:::i;:::-;;:::i;709:342:5:-;;;;;;;;;;-1:-1:-1;709:342:5;;;;;:::i;:::-;;:::i;1668:101:1:-;;;;;;;;;;;;;:::i;723:34:0:-;;;;;;;;;;;;;:::i;1036:85:1:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4078:93:0:-;;;;;;;;;;-1:-1:-1;4078:93:0;;;;;:::i;:::-;;:::i;641:20::-;;;;;;;;;;;;;:::i;3270:348::-;;;;;;;;;;;;;:::i;3131:153:2:-;;;;;;;;;;-1:-1:-1;3131:153:2;;;;;:::i;:::-;;:::i;2799:465:0:-;;;;;;;;;;;;;:::i;1776:85::-;;;;;;;;;;;;;:::i;3351:166:2:-;;;;;;;;;;-1:-1:-1;3351:166:2;;;;;:::i;:::-;;:::i;3584:389::-;;;;;;;;;;-1:-1:-1;3584:389:2;;;;;:::i;:::-;;:::i;1918:198:1:-;;;;;;;;;;-1:-1:-1;1918:198:1;;;;;:::i;:::-;;:::i;393:310:5:-;;;;;;;;;;-1:-1:-1;393:310:5;;;;;:::i;:::-;;:::i;2170:228:2:-;2256:7;-1:-1:-1;;;;;2283:21:2;;2275:77;;;;-1:-1:-1;;;2275:77:2;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;2369:9:2;:13;;;;;;;;;;;-1:-1:-1;;;;;2369:22:2;;;;;;;;;;;;2170:228::o;1221:305::-;1323:4;-1:-1:-1;;;;;;1358:41:2;;-1:-1:-1;;;1358:41:2;;:109;;-1:-1:-1;;;;;;;1415:52:2;;-1:-1:-1;;;1415:52:2;1358:109;:161;;;;1483:36;1507:11;1483:23;:36::i;:::-;1339:180;;1221:305;;;;:::o;617:18:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1925:103:2:-;1985:13;2017:4;2010:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1925:103;;;:::o;1552:88:0:-;1621:12;;1552:88;;:::o;4181:101::-;1259:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:1;;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;4227:51:0::1;::::0;4235:10:::1;::::0;4256:21:::1;4227:51:::0;::::1;;;::::0;::::1;::::0;;;4256:21;4235:10;4227:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;4181:101::o:0;4045:430:2:-;4278:12;:10;:12::i;:::-;-1:-1:-1;;;;;4270:20:2;:4;-1:-1:-1;;;;;4270:20:2;;:60;;;;4294:36;4311:4;4317:12;:10;:12::i;4294:36::-;4249:157;;;;-1:-1:-1;;;4249:157:2;;;;;;;:::i;:::-;4416:52;4439:4;4445:2;4449:3;4454:7;4463:4;4416:22;:52::i;:::-;4045:430;;;;;:::o;1867:91:0:-;1259:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:1;;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;1937:14:0::1;::::0;;-1:-1:-1;;1919:32:0;::::1;1937:14;::::0;;;::::1;;;1936:15;1919:32:::0;;::::1;;::::0;;1867:91::o;1964:477::-;2047:12;;2020:7;;2047:12;;:20;;:12;:20;2039:55;;;;-1:-1:-1;;;2039:55:0;;;;;;;:::i;:::-;2104:15;2122:14;:12;:14::i;:::-;2104:32;-1:-1:-1;2167:20:0;2104:32;2179:7;2167:11;:20::i;:::-;2154:9;:33;;2146:62;;;;-1:-1:-1;;;2146:62:0;;;;;;;:::i;:::-;2252:11;;2236:12;;2226:22;;:7;:22;:::i;:::-;:37;;2218:63;;;;-1:-1:-1;;;2218:63:0;;;;;;;:::i;:::-;2321:7;2306:12;;:22;;;;:::i;:::-;2291:12;:37;;;;2338:39;2344:10;2356:7;;2365;2338:39;;;;;;;;;;;;:5;:39::i;:::-;2387:18;:16;:18::i;:::-;-1:-1:-1;;2422:12:0;;;1964:477;-1:-1:-1;;1964:477:0:o;1646:125::-;1259:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:1;;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;1723:23:0::1;:41:::0;;-1:-1:-1;;;;;;1723:41:0::1;-1:-1:-1::0;;;;;1723:41:0;;;::::1;::::0;;;::::1;::::0;;1646:125::o;2555:508:2:-;2706:16;2765:3;:10;2746:8;:15;:29;2738:83;;;;-1:-1:-1;;;2738:83:2;;;;;;;:::i;:::-;2832:30;2879:8;:15;2865:30;;;;;;-1:-1:-1;;;2865:30:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2865:30:2;;2832:63;;2911:9;2906:120;2930:8;:15;2926:1;:19;2906:120;;;2985:30;2995:8;3004:1;2995:11;;;;;;-1:-1:-1;;;2995:11:2;;;;;;;;;;;;;;;3008:3;3012:1;3008:6;;;;;;-1:-1:-1;;;3008:6:2;;;;;;;;;;;;;;;2985:9;:30::i;:::-;2966:13;2980:1;2966:16;;;;;;-1:-1:-1;;;2966:16:2;;;;;;;;;;;;;;;;;;:49;2947:3;;;:::i;:::-;;;2906:120;;;-1:-1:-1;3043:13:2;2555:508;-1:-1:-1;;;2555:508:2:o;2447:346:0:-;1259:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:1;;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;2549:9:0::1;2545:242;2562:9;:16;2560:1;:18;2545:242;;;2635:11;;2619:12;;2606:7;2614:1;2606:10;;;;;;-1:-1:-1::0;;;2606:10:0::1;;;;;;;;;;;;;;;:25;;;;:::i;:::-;:40;;2598:66;;;;-1:-1:-1::0;;;2598:66:0::1;;;;;;;:::i;:::-;2708:7;2716:1;2708:10;;;;;;-1:-1:-1::0;;;2708:10:0::1;;;;;;;;;;;;;;;2693:12;;:25;;;;:::i;:::-;2678:12;:40;;;;2732:44;2738:9;2748:1;2738:12;;;;;;-1:-1:-1::0;;;2738:12:0::1;;;;;;;;;;;;;;;2752:7;;2761;2769:1;2761:10;;;;;;-1:-1:-1::0;;;2761:10:0::1;;;;;;;;;;;;;;;2732:44;;;;;;;;;;;::::0;:5:::1;:44::i;:::-;2580:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2545:242;;;;2447:346:::0;;:::o;709:342:5:-;879:12;:10;:12::i;:::-;-1:-1:-1;;;;;868:23:5;:7;-1:-1:-1;;;;;868:23:5;;:66;;;;895:39;912:7;921:12;:10;:12::i;895:39::-;847:154;;;;-1:-1:-1;;;847:154:5;;;;;;;:::i;:::-;1012:32;1023:7;1032:3;1037:6;1012:10;:32::i;1668:101:1:-;1259:12;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:1;;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;723:34:0:-;;;;:::o;1036:85:1:-;1108:6;;-1:-1:-1;;;;;1108:6:1;1036:85;:::o;4078:93:0:-;1259:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:1;;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;4142:10:0::1;:22:::0;4078:93::o;641:20::-;;;;;;;:::i;3270:348::-;3314:7;3333:15;3351:35;3371:14;;3351:15;:19;;:35;;;;:::i;:::-;3333:53;-1:-1:-1;3396:13:0;3412:18;3333:53;3424:5;3412:11;:18::i;:::-;3396:34;;3470:24;3485:8;;3470:10;;:14;;:24;;;;:::i;:::-;3453:12;;3443:23;;:5;;:9;:23::i;:::-;:51;3440:172;;3516:8;;3509:15;;;;;;3440:172;3562:39;3577:23;3587:12;;3577:5;:9;;:23;;;;:::i;:::-;3562:10;;;:14;:39::i;:::-;3555:46;;;;;;3131:153:2;3225:52;3244:12;:10;:12::i;:::-;3258:8;3268;3225:18;:52::i;:::-;3131:153;;:::o;2799:465:0:-;2863:14;;2836:7;;2863:14;;;;;;:22;;:14;:22;2855:58;;;;-1:-1:-1;;;2855:58:0;;;;;;;:::i;:::-;2964:1;2931:30;2941:10;2953:7;;2931:9;:30::i;:::-;:34;2923:68;;;;-1:-1:-1;;;2923:68:0;;;;;;;:::i;:::-;3001:28;3006:10;3018:7;;3027:1;3001:4;:28::i;:::-;3094:23;;3147:36;;-1:-1:-1;;;3147:36:0;;-1:-1:-1;;;;;3094:23:0;;;;3039:34;;3094:23;;3147:24;;:36;;3172:10;;3147:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3198:34;;3128:55;;-1:-1:-1;3128:55:0;;3211:10;;3198:34;;;;;3249:8;-1:-1:-1;;2799:465:0;:::o;1776:85::-;1259:12:1;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:1;;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;1842:12:0::1;::::0;;-1:-1:-1;;1826:28:0;::::1;1842:12;::::0;;::::1;1841:13;1826:28;::::0;;1776:85::o;3351:166:2:-;-1:-1:-1;;;;;3473:27:2;;;3450:4;3473:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3351:166::o;3584:389::-;3792:12;:10;:12::i;:::-;-1:-1:-1;;;;;3784:20:2;:4;-1:-1:-1;;;;;3784:20:2;;:60;;;;3808:36;3825:4;3831:12;:10;:12::i;3808:36::-;3763:148;;;;-1:-1:-1;;;3763:148:2;;;;;;;:::i;:::-;3921:45;3939:4;3945:2;3949;3953:6;3961:4;3921:17;:45::i;1918:198:1:-;1259:12;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:1;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:1;;1240:68;;;;-1:-1:-1;;;1240:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:1;::::1;1998:73;;;;-1:-1:-1::0;;;1998:73:1::1;;;;;;;:::i;:::-;2081:28;2100:8;2081:18;:28::i;393:310:5:-:0;538:12;:10;:12::i;:::-;-1:-1:-1;;;;;527:23:5;:7;-1:-1:-1;;;;;527:23:5;;:66;;;;554:39;571:7;580:12;:10;:12::i;554:39::-;506:154;;;;-1:-1:-1;;;506:154:5;;;;;;;:::i;:::-;671:25;677:7;686:2;690:5;671;:25::i;829:155:9:-;-1:-1:-1;;;;;;937:40:9;;-1:-1:-1;;;937:40:9;829:155;;;:::o;640:96:8:-;719:10;640:96;:::o;6068:1045:2:-;6288:7;:14;6274:3;:10;:28;6266:81;;;;-1:-1:-1;;;6266:81:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;6365:16:2;;6357:66;;;;-1:-1:-1;;;6357:66:2;;;;;;;:::i;:::-;6434:16;6453:12;:10;:12::i;:::-;6434:31;;6476:60;6497:8;6507:4;6513:2;6517:3;6522:7;6531:4;6476:20;:60::i;:::-;6552:9;6547:411;6571:3;:10;6567:1;:14;6547:411;;;6602:10;6615:3;6619:1;6615:6;;;;;;-1:-1:-1;;;6615:6:2;;;;;;;;;;;;;;;6602:19;;6635:14;6652:7;6660:1;6652:10;;;;;;-1:-1:-1;;;6652:10:2;;;;;;;;;;;;;;;;;;;;6677:19;6699:13;;;;;;;;;;-1:-1:-1;;;;;6699:19:2;;;;;;;;;;;;6652:10;;-1:-1:-1;6740:21:2;;;;6732:76;;;;-1:-1:-1;;;6732:76:2;;;;;;;:::i;:::-;6850:9;:13;;;;;;;;;;;-1:-1:-1;;;;;6850:19:2;;;;;;;;;;6872:20;;;6850:42;;6920:17;;;;;;;:27;;6872:20;;6850:9;6920:27;;6872:20;;6920:27;:::i;:::-;;;;;;;;6547:411;;;6583:3;;;;:::i;:::-;;;6547:411;;;;7003:2;-1:-1:-1;;;;;6973:47:2;6997:4;-1:-1:-1;;;;;6973:47:2;6987:8;-1:-1:-1;;;;;6973:47:2;;7007:3;7012:7;6973:47;;;;;;;:::i;:::-;;;;;;;;7031:75;7067:8;7077:4;7083:2;7087:3;7092:7;7101:4;7031:35;:75::i;:::-;6068:1045;;;;;;:::o;3451:96:11:-;3509:7;3535:5;3539:1;3535;:5;:::i;:::-;3528:12;3451:96;-1:-1:-1;;;3451:96:11:o;8395:553:2:-;-1:-1:-1;;;;;8542:16:2;;8534:62;;;;-1:-1:-1;;;8534:62:2;;;;;;;:::i;:::-;8607:16;8626:12;:10;:12::i;:::-;8607:31;;8649:102;8670:8;8688:1;8692:2;8696:21;8714:2;8696:17;:21::i;:::-;8719:25;8737:6;8719:17;:25::i;:::-;8746:4;8649:20;:102::i;:::-;8762:9;:13;;;;;;;;;;;-1:-1:-1;;;;;8762:17:2;;;;;;;;;:27;;8783:6;;8762:9;:27;;8783:6;;8762:27;:::i;:::-;;;;;;;;8841:2;-1:-1:-1;;;;;8804:52:2;8837:1;-1:-1:-1;;;;;8804:52:2;8819:8;-1:-1:-1;;;;;8804:52:2;;8845:2;8849:6;8804:52;;;;;;;:::i;:::-;;;;;;;;8867:74;8898:8;8916:1;8920:2;8924;8928:6;8936:4;8867:30;:74::i;3624:448:0:-;3669:7;3688:15;3706:14;:12;:14::i;:::-;3688:32;;3730:19;3752:35;3772:14;;3752:15;:19;;:35;;;;:::i;:::-;3730:57;;3815:5;3800:11;:20;3797:242;;3860:12;;3848:25;;:7;;:11;:25::i;:::-;3835:10;:38;3904:15;3887:14;:32;;;3933:14;:32;3797:242;;;4013:15;3996:14;:32;3797:242;4055:10;;4048:17;;;;3624:448;:::o;11072:867:2:-;-1:-1:-1;;;;;11219:18:2;;11211:66;;;;-1:-1:-1;;;11211:66:2;;;;;;;:::i;:::-;11309:7;:14;11295:3;:10;:28;11287:81;;;;-1:-1:-1;;;11287:81:2;;;;;;;:::i;:::-;11379:16;11398:12;:10;:12::i;:::-;11379:31;;11421:66;11442:8;11452:4;11466:1;11470:3;11475:7;11421:66;;;;;;;;;;;;:20;:66::i;:::-;11503:9;11498:364;11522:3;:10;11518:1;:14;11498:364;;;11553:10;11566:3;11570:1;11566:6;;;;;;-1:-1:-1;;;11566:6:2;;;;;;;;;;;;;;;11553:19;;11586:14;11603:7;11611:1;11603:10;;;;;;-1:-1:-1;;;11603:10:2;;;;;;;;;;;;;;;;;;;;11628:19;11650:13;;;;;;;;;;-1:-1:-1;;;;;11650:19:2;;;;;;;;;;;;11603:10;;-1:-1:-1;11691:21:2;;;;11683:70;;;;-1:-1:-1;;;11683:70:2;;;;;;;:::i;:::-;11795:9;:13;;;;;;;;;;;-1:-1:-1;;;;;11795:19:2;;;;;;;;;;11817:20;;11795:42;;11534:3;;;;:::i;:::-;;;;11498:364;;;;11915:1;-1:-1:-1;;;;;11877:55:2;11901:4;-1:-1:-1;;;;;11877:55:2;11891:8;-1:-1:-1;;;;;11877:55:2;;11919:3;11924:7;11877:55;;;;;;;:::i;:::-;;;;;;;;11072:867;;;;:::o;2270:187:1:-;2362:6;;;-1:-1:-1;;;;;2378:17:1;;;-1:-1:-1;;;;;;2378:17:1;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2270:187;;:::o;3108:96:11:-;3166:7;3192:5;3196:1;3192;:5;:::i;3836:96::-;3894:7;3920:5;3924:1;3920;:5;:::i;2741:96::-;2799:7;2825:5;2829:1;2825;:5;:::i;12074:323:2:-;12224:8;-1:-1:-1;;;;;12215:17:2;:5;-1:-1:-1;;;;;12215:17:2;;;12207:71;;;;-1:-1:-1;;;12207:71:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;12288:25:2;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;12288:46:2;;;;;;;12349:41;;;;;12288:46;;12349:41;:::i;:::-;;;;;;;;12074:323;;;:::o;4925:797::-;-1:-1:-1;;;;;5106:16:2;;5098:66;;;;-1:-1:-1;;;5098:66:2;;;;;;;:::i;:::-;5175:16;5194:12;:10;:12::i;:::-;5175:31;;5217:96;5238:8;5248:4;5254:2;5258:21;5276:2;5258:17;:21::i;5217:96::-;5324:19;5346:13;;;;;;;;;;;-1:-1:-1;;;;;5346:19:2;;;;;;;;;;5383:21;;;;5375:76;;;;-1:-1:-1;;;5375:76:2;;;;;;;:::i;:::-;5485:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5485:19:2;;;;;;;;;;5507:20;;;5485:42;;5547:17;;;;;;;:27;;5507:20;;5485:9;5547:27;;5507:20;;5547:27;:::i;:::-;;;;;;;;5621:2;-1:-1:-1;;;;;5590:46:2;5615:4;-1:-1:-1;;;;;5590:46:2;5605:8;-1:-1:-1;;;;;5590:46:2;;5625:2;5629:6;5590:46;;;;;;;:::i;:::-;;;;;;;;5647:68;5678:8;5688:4;5694:2;5698;5702:6;5710:4;5647:30;:68::i;:::-;4925:797;;;;;;;:::o;10248:630::-;-1:-1:-1;;;;;10370:18:2;;10362:66;;;;-1:-1:-1;;;10362:66:2;;;;;;;:::i;:::-;10439:16;10458:12;:10;:12::i;:::-;10439:31;;10481:102;10502:8;10512:4;10526:1;10530:21;10548:2;10530:17;:21::i;:::-;10553:25;10571:6;10553:17;:25::i;:::-;10481:102;;;;;;;;;;;;:20;:102::i;:::-;10594:19;10616:13;;;;;;;;;;;-1:-1:-1;;;;;10616:19:2;;;;;;;;;;10653:21;;;;10645:70;;;;-1:-1:-1;;;10645:70:2;;;;;;;:::i;:::-;10749:9;:13;;;;;;;;;;;-1:-1:-1;;;;;10749:19:2;;;;;;;;;;;;;10771:20;;;10749:42;;10817:54;;10749:19;;10817:54;;;;;;;10759:2;;10785:6;;10817:54;:::i;:::-;;;;;;;;10248:630;;;;;:::o;14282:792::-;14514:15;:2;-1:-1:-1;;;;;14514:13:2;;:15::i;:::-;14510:558;;;14549:79;;-1:-1:-1;;;14549:79:2;;-1:-1:-1;;;;;14549:43:2;;;;;:79;;14593:8;;14603:4;;14609:3;;14614:7;;14623:4;;14549:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14549:79:2;;;;;;;;-1:-1:-1;;14549:79:2;;;;;;;;;;;;:::i;:::-;;;14545:513;;;;:::i;:::-;;;;;;;;14934:6;14927:14;;-1:-1:-1;;;14927:14:2;;;;;;;;:::i;14545:513::-;14981:62;;-1:-1:-1;;;14981:62:2;;;;;;;:::i;14545:513::-;-1:-1:-1;;;;;;14707:60:2;;-1:-1:-1;;;14707:60:2;14703:157;;14791:50;;-1:-1:-1;;;14791:50:2;;;;;;;:::i;15080:193::-;15199:16;;;15213:1;15199:16;;;;;;;;;15146;;15174:22;;15199:16;;;;;;;;;;;;-1:-1:-1;15199:16:2;15174:41;;15236:7;15225:5;15231:1;15225:8;;;;;;-1:-1:-1;;;15225:8:2;;;;;;;;;;;;;;;;;;:18;15261:5;15080:193;-1:-1:-1;;15080:193:2:o;13551:725::-;13758:15;:2;-1:-1:-1;;;;;13758:13:2;;:15::i;:::-;13754:516;;;13793:72;;-1:-1:-1;;;13793:72:2;;-1:-1:-1;;;;;13793:38:2;;;;;:72;;13832:8;;13842:4;;13848:2;;13852:6;;13860:4;;13793:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13793:72:2;;;;;;;;-1:-1:-1;;13793:72:2;;;;;;;;;;;;:::i;:::-;;;13789:471;;;;:::i;:::-;-1:-1:-1;;;;;;13914:55:2;;-1:-1:-1;;;13914:55:2;13910:152;;13993:50;;-1:-1:-1;;;13993:50:2;;;;;;;:::i;771:377:7:-;1087:20;1133:8;;;771:377::o;14:175:12:-;84:20;;-1:-1:-1;;;;;133:31:12;;123:42;;113:2;;179:1;176;169:12;194:705;;307:3;300:4;292:6;288:17;284:27;274:2;;329:5;322;315:20;274:2;369:6;356:20;395:4;419:65;434:49;480:2;434:49;:::i;:::-;419:65;:::i;:::-;518:15;;;549:12;;;;581:15;;;627:11;;;615:24;;611:33;;608:42;-1:-1:-1;605:2:12;;;667:5;660;653:20;605:2;693:5;707:163;721:2;718:1;715:9;707:163;;;778:17;;766:30;;816:12;;;;848;;;;739:1;732:9;707:163;;;-1:-1:-1;888:5:12;;264:635;-1:-1:-1;;;;;;;264:635:12:o;904:551::-;;1001:3;994:4;986:6;982:17;978:27;968:2;;1023:5;1016;1009:20;968:2;1063:6;1050:20;1089:18;1085:2;1082:26;1079:2;;;1111:18;;:::i;:::-;1155:54;1197:2;1178:13;;-1:-1:-1;;1174:27:12;1203:4;1170:38;1155:54;:::i;:::-;1234:2;1225:7;1218:19;1280:3;1273:4;1268:2;1260:6;1256:15;1252:26;1249:35;1246:2;;;1301:5;1294;1287:20;1246:2;1370;1363:4;1355:6;1351:17;1344:4;1335:7;1331:18;1318:55;1393:16;;;1411:4;1389:27;1382:42;;;;1397:7;958:497;-1:-1:-1;;958:497:12:o;1460:198::-;;1572:2;1560:9;1551:7;1547:23;1543:32;1540:2;;;1593:6;1585;1578:22;1540:2;1621:31;1642:9;1621:31;:::i;1663:274::-;;;1792:2;1780:9;1771:7;1767:23;1763:32;1760:2;;;1813:6;1805;1798:22;1760:2;1841:31;1862:9;1841:31;:::i;:::-;1831:41;;1891:40;1927:2;1916:9;1912:18;1891:40;:::i;:::-;1881:50;;1750:187;;;;;:::o;1942:1001::-;;;;;;2181:3;2169:9;2160:7;2156:23;2152:33;2149:2;;;2203:6;2195;2188:22;2149:2;2231:31;2252:9;2231:31;:::i;:::-;2221:41;;2281:40;2317:2;2306:9;2302:18;2281:40;:::i;:::-;2271:50;;2372:2;2361:9;2357:18;2344:32;2395:18;2436:2;2428:6;2425:14;2422:2;;;2457:6;2449;2442:22;2422:2;2485:67;2544:7;2535:6;2524:9;2520:22;2485:67;:::i;:::-;2475:77;;2605:2;2594:9;2590:18;2577:32;2561:48;;2634:2;2624:8;2621:16;2618:2;;;2655:6;2647;2640:22;2618:2;2683:69;2744:7;2733:8;2722:9;2718:24;2683:69;:::i;:::-;2673:79;;2805:3;2794:9;2790:19;2777:33;2761:49;;2835:2;2825:8;2822:16;2819:2;;;2856:6;2848;2841:22;2819:2;;2884:53;2929:7;2918:8;2907:9;2903:24;2884:53;:::i;:::-;2874:63;;;2139:804;;;;;;;;:::o;2948:632::-;;;;;;3137:3;3125:9;3116:7;3112:23;3108:33;3105:2;;;3159:6;3151;3144:22;3105:2;3187:31;3208:9;3187:31;:::i;:::-;3177:41;;3237:40;3273:2;3262:9;3258:18;3237:40;:::i;:::-;3227:50;;3324:2;3313:9;3309:18;3296:32;3286:42;;3375:2;3364:9;3360:18;3347:32;3337:42;;3430:3;3419:9;3415:19;3402:33;3458:18;3450:6;3447:30;3444:2;;;3495:6;3487;3480:22;3444:2;3523:51;3566:7;3557:6;3546:9;3542:22;3523:51;:::i;3585:713::-;;;;3781:2;3769:9;3760:7;3756:23;3752:32;3749:2;;;3802:6;3794;3787:22;3749:2;3830:31;3851:9;3830:31;:::i;:::-;3820:41;;3912:2;3901:9;3897:18;3884:32;3935:18;3976:2;3968:6;3965:14;3962:2;;;3997:6;3989;3982:22;3962:2;4025:67;4084:7;4075:6;4064:9;4060:22;4025:67;:::i;:::-;4015:77;;4145:2;4134:9;4130:18;4117:32;4101:48;;4174:2;4164:8;4161:16;4158:2;;;4195:6;4187;4180:22;4158:2;;4223:69;4284:7;4273:8;4262:9;4258:24;4223:69;:::i;:::-;4213:79;;;3739:559;;;;;:::o;4303:369::-;;;4429:2;4417:9;4408:7;4404:23;4400:32;4397:2;;;4450:6;4442;4435:22;4397:2;4478:31;4499:9;4478:31;:::i;:::-;4468:41;;4559:2;4548:9;4544:18;4531:32;4606:5;4599:13;4592:21;4585:5;4582:32;4572:2;;4633:6;4625;4618:22;4572:2;4661:5;4651:15;;;4387:285;;;;;:::o;4677:266::-;;;4806:2;4794:9;4785:7;4781:23;4777:32;4774:2;;;4827:6;4819;4812:22;4774:2;4855:31;4876:9;4855:31;:::i;:::-;4845:41;4933:2;4918:18;;;;4905:32;;-1:-1:-1;;;4764:179:12:o;4948:334::-;;;;5094:2;5082:9;5073:7;5069:23;5065:32;5062:2;;;5115:6;5107;5100:22;5062:2;5143:31;5164:9;5143:31;:::i;:::-;5133:41;5221:2;5206:18;;5193:32;;-1:-1:-1;5272:2:12;5257:18;;;5244:32;;5052:230;-1:-1:-1;;;5052:230:12:o;5287:1226::-;;;5466:2;5454:9;5445:7;5441:23;5437:32;5434:2;;;5487:6;5479;5472:22;5434:2;5532:9;5519:23;5561:18;5602:2;5594:6;5591:14;5588:2;;;5623:6;5615;5608:22;5588:2;5666:6;5655:9;5651:22;5641:32;;5711:7;5704:4;5700:2;5696:13;5692:27;5682:2;;5738:6;5730;5723:22;5682:2;5779;5766:16;5801:4;5825:65;5840:49;5886:2;5840:49;:::i;5825:65::-;5924:15;;;5955:12;;;;5987:11;;;6025;;;6017:20;;6013:29;;6010:42;-1:-1:-1;6007:2:12;;;6070:6;6062;6055:22;6007:2;6097:6;6088:15;;6112:171;6126:2;6123:1;6120:9;6112:171;;;6183:25;6204:3;6183:25;:::i;:::-;6171:38;;6144:1;6137:9;;;;;6229:12;;;;6261;;6112:171;;;-1:-1:-1;6302:5:12;-1:-1:-1;;6345:18:12;;6332:32;;-1:-1:-1;;6376:16:12;;;6373:2;;;6410:6;6402;6395:22;6373:2;;6438:69;6499:7;6488:8;6477:9;6473:24;6438:69;:::i;:::-;6428:79;;;5424:1089;;;;;:::o;6518:257::-;;6629:2;6617:9;6608:7;6604:23;6600:32;6597:2;;;6650:6;6642;6635:22;6597:2;6694:9;6681:23;6713:32;6739:5;6713:32;:::i;6780:261::-;;6902:2;6890:9;6881:7;6877:23;6873:32;6870:2;;;6923:6;6915;6908:22;6870:2;6960:9;6954:16;6979:32;7005:5;6979:32;:::i;7046:190::-;;7158:2;7146:9;7137:7;7133:23;7129:32;7126:2;;;7179:6;7171;7164:22;7126:2;-1:-1:-1;7207:23:12;;7116:120;-1:-1:-1;7116:120:12:o;7241:194::-;;7364:2;7352:9;7343:7;7339:23;7335:32;7332:2;;;7385:6;7377;7370:22;7332:2;-1:-1:-1;7413:16:12;;7322:113;-1:-1:-1;7322:113:12:o;7440:443::-;;7537:5;7531:12;7564:6;7559:3;7552:19;7590:4;7619:2;7614:3;7610:12;7603:19;;7656:2;7649:5;7645:14;7677:3;7689:169;7703:6;7700:1;7697:13;7689:169;;;7764:13;;7752:26;;7798:12;;;;7833:15;;;;7725:1;7718:9;7689:169;;;-1:-1:-1;7874:3:12;;7507:376;-1:-1:-1;;;;;7507:376:12:o;7888:477::-;;7969:5;7963:12;7996:6;7991:3;7984:19;8021:3;8033:162;8047:6;8044:1;8041:13;8033:162;;;8109:4;8165:13;;;8161:22;;8155:29;8137:11;;;8133:20;;8126:59;8062:12;8033:162;;;8213:6;8210:1;8207:13;8204:2;;;8279:3;8272:4;8263:6;8258:3;8254:16;8250:27;8243:40;8204:2;-1:-1:-1;8347:2:12;8326:15;-1:-1:-1;;8322:29:12;8313:39;;;;8354:4;8309:50;;7939:426;-1:-1:-1;;7939:426:12:o;8370:203::-;-1:-1:-1;;;;;8534:32:12;;;;8516:51;;8504:2;8489:18;;8471:102::o;8578:840::-;-1:-1:-1;;;;;8975:15:12;;;8957:34;;9027:15;;9022:2;9007:18;;9000:43;8937:3;9074:2;9059:18;;9052:31;;;8578:840;;9106:63;;9149:19;;9141:6;9106:63;:::i;:::-;9217:9;9209:6;9205:22;9200:2;9189:9;9185:18;9178:50;9251;9294:6;9286;9251:50;:::i;:::-;9237:64;;9350:9;9342:6;9338:22;9332:3;9321:9;9317:19;9310:51;9378:34;9405:6;9397;9378:34;:::i;:::-;9370:42;8909:509;-1:-1:-1;;;;;;;;8909:509:12:o;9423:562::-;-1:-1:-1;;;;;9720:15:12;;;9702:34;;9772:15;;9767:2;9752:18;;9745:43;9819:2;9804:18;;9797:34;;;9862:2;9847:18;;9840:34;;;9682:3;9905;9890:19;;9883:32;;;9423:562;;9932:47;;9959:19;;9951:6;9932:47;:::i;:::-;9924:55;9654:331;-1:-1:-1;;;;;;;9654:331:12:o;9990:267::-;;10169:2;10158:9;10151:21;10189:62;10247:2;10236:9;10232:18;10224:6;10189:62;:::i;10262:477::-;;10519:2;10508:9;10501:21;10545:62;10603:2;10592:9;10588:18;10580:6;10545:62;:::i;:::-;10655:9;10647:6;10643:22;10638:2;10627:9;10623:18;10616:50;10683;10726:6;10718;10683:50;:::i;:::-;10675:58;10491:248;-1:-1:-1;;;;;10491:248:12:o;10744:187::-;10909:14;;10902:22;10884:41;;10872:2;10857:18;;10839:92::o;10936:221::-;;11085:2;11074:9;11067:21;11105:46;11147:2;11136:9;11132:18;11124:6;11105:46;:::i;11162:416::-;11364:2;11346:21;;;11403:2;11383:18;;;11376:30;11442:34;11437:2;11422:18;;11415:62;-1:-1:-1;;;11508:2:12;11493:18;;11486:50;11568:3;11553:19;;11336:242::o;11583:404::-;11785:2;11767:21;;;11824:2;11804:18;;;11797:30;11863:34;11858:2;11843:18;;11836:62;-1:-1:-1;;;11929:2:12;11914:18;;11907:38;11977:3;11962:19;;11757:230::o;11992:340::-;12194:2;12176:21;;;12233:2;12213:18;;;12206:30;-1:-1:-1;;;12267:2:12;12252:18;;12245:46;12323:2;12308:18;;12166:166::o;12337:407::-;12539:2;12521:21;;;12578:2;12558:18;;;12551:30;12617:34;12612:2;12597:18;;12590:62;-1:-1:-1;;;12683:2:12;12668:18;;12661:41;12734:3;12719:19;;12511:233::o;12749:402::-;12951:2;12933:21;;;12990:2;12970:18;;;12963:30;13029:34;13024:2;13009:18;;13002:62;-1:-1:-1;;;13095:2:12;13080:18;;13073:36;13141:3;13126:19;;12923:228::o;13156:345::-;13358:2;13340:21;;;13397:2;13377:18;;;13370:30;-1:-1:-1;;;13431:2:12;13416:18;;13409:51;13492:2;13477:18;;13330:171::o;13506:400::-;13708:2;13690:21;;;13747:2;13727:18;;;13720:30;13786:34;13781:2;13766:18;;13759:62;-1:-1:-1;;;13852:2:12;13837:18;;13830:34;13896:3;13881:19;;13680:226::o;13911:405::-;14113:2;14095:21;;;14152:2;14132:18;;;14125:30;14191:34;14186:2;14171:18;;14164:62;-1:-1:-1;;;14257:2:12;14242:18;;14235:39;14306:3;14291:19;;14085:231::o;14321:337::-;14523:2;14505:21;;;14562:2;14542:18;;;14535:30;-1:-1:-1;;;14596:2:12;14581:18;;14574:43;14649:2;14634:18;;14495:163::o;14663:346::-;14865:2;14847:21;;;14904:2;14884:18;;;14877:30;-1:-1:-1;;;14938:2:12;14923:18;;14916:52;15000:2;14985:18;;14837:172::o;15014:401::-;15216:2;15198:21;;;15255:2;15235:18;;;15228:30;15294:34;15289:2;15274:18;;15267:62;-1:-1:-1;;;15360:2:12;15345:18;;15338:35;15405:3;15390:19;;15188:227::o;15420:414::-;15622:2;15604:21;;;15661:2;15641:18;;;15634:30;15700:34;15695:2;15680:18;;15673:62;-1:-1:-1;;;15766:2:12;15751:18;;15744:48;15824:3;15809:19;;15594:240::o;15839:399::-;16041:2;16023:21;;;16080:2;16060:18;;;16053:30;16119:34;16114:2;16099:18;;16092:62;-1:-1:-1;;;16185:2:12;16170:18;;16163:33;16228:3;16213:19;;16013:225::o;16243:406::-;16445:2;16427:21;;;16484:2;16464:18;;;16457:30;16523:34;16518:2;16503:18;;16496:62;-1:-1:-1;;;16589:2:12;16574:18;;16567:40;16639:3;16624:19;;16417:232::o;16654:356::-;16856:2;16838:21;;;16875:18;;;16868:30;16934:34;16929:2;16914:18;;16907:62;17001:2;16986:18;;16828:182::o;17015:347::-;17217:2;17199:21;;;17256:2;17236:18;;;17229:30;17295:25;17290:2;17275:18;;17268:53;17353:2;17338:18;;17189:173::o;17367:405::-;17569:2;17551:21;;;17608:2;17588:18;;;17581:30;17647:34;17642:2;17627:18;;17620:62;-1:-1:-1;;;17713:2:12;17698:18;;17691:39;17762:3;17747:19;;17541:231::o;17777:405::-;17979:2;17961:21;;;18018:2;17998:18;;;17991:30;18057:34;18052:2;18037:18;;18030:62;-1:-1:-1;;;18123:2:12;18108:18;;18101:39;18172:3;18157:19;;17951:231::o;18187:404::-;18389:2;18371:21;;;18428:2;18408:18;;;18401:30;18467:34;18462:2;18447:18;;18440:62;-1:-1:-1;;;18533:2:12;18518:18;;18511:38;18581:3;18566:19;;18361:230::o;18596:397::-;18798:2;18780:21;;;18837:2;18817:18;;;18810:30;18876:34;18871:2;18856:18;;18849:62;-1:-1:-1;;;18942:2:12;18927:18;;18920:31;18983:3;18968:19;;18770:223::o;18998:177::-;19144:25;;;19132:2;19117:18;;19099:76::o;19180:248::-;19354:25;;;19410:2;19395:18;;19388:34;19342:2;19327:18;;19309:119::o;19433:251::-;19503:2;19497:9;19533:17;;;19580:18;19565:34;;19601:22;;;19562:62;19559:2;;;19627:18;;:::i;:::-;19663:2;19656:22;19477:207;;-1:-1:-1;19477:207:12:o;19689:192::-;;19788:18;19780:6;19777:30;19774:2;;;19810:18;;:::i;:::-;-1:-1:-1;19870:4:12;19851:17;;;19847:28;;19764:117::o;19886:128::-;;19957:1;19953:6;19950:1;19947:13;19944:2;;;19963:18;;:::i;:::-;-1:-1:-1;19999:9:12;;19934:80::o;20019:217::-;;20085:1;20075:2;;-1:-1:-1;;;20110:31:12;;20164:4;20161:1;20154:15;20192:4;20117:1;20182:15;20075:2;-1:-1:-1;20221:9:12;;20065:171::o;20241:168::-;;20347:1;20343;20339:6;20335:14;20332:1;20329:21;20324:1;20317:9;20310:17;20306:45;20303:2;;;20354:18;;:::i;:::-;-1:-1:-1;20394:9:12;;20293:116::o;20414:125::-;;20482:1;20479;20476:8;20473:2;;;20487:18;;:::i;:::-;-1:-1:-1;20524:9:12;;20463:76::o;20544:380::-;20629:1;20619:12;;20676:1;20666:12;;;20687:2;;20741:4;20733:6;20729:17;20719:27;;20687:2;20794;20786:6;20783:14;20763:18;20760:38;20757:2;;;20840:10;20835:3;20831:20;20828:1;20821:31;20875:4;20872:1;20865:15;20903:4;20900:1;20893:15;20757:2;;20599:325;;;:::o;20929:135::-;;-1:-1:-1;;20989:17:12;;20986:2;;;21009:18;;:::i;:::-;-1:-1:-1;21056:1:12;21045:13;;20976:88::o;21069:127::-;21130:10;21125:3;21121:20;21118:1;21111:31;21161:4;21158:1;21151:15;21185:4;21182:1;21175:15;21201:127;21262:10;21257:3;21253:20;21250:1;21243:31;21293:4;21290:1;21283:15;21317:4;21314:1;21307:15;21333:88;21408:3;21404:15;;21390:31::o;21426:764::-;;21507:4;21489:16;21486:26;21483:2;;;21515:5;;21483:2;21556:1;21551:3;21546;21531:27;21618:10;21580:36;21611:3;21605:10;21580:36;:::i;:::-;21577:52;21567:2;;21633:5;;21567:2;21667;21661:9;21707:16;-1:-1:-1;;21703:29:12;21700:1;21661:9;21679:54;21762:4;21756:11;21786:16;21821:18;21892:2;21885:4;21877:6;21873:17;21870:25;21865:2;21857:6;21854:14;21851:45;21848:2;;;21899:5;;;;;;21848:2;21936:6;21930:4;21926:17;21915:28;;21972:3;21966:10;21952:24;;21999:2;21991:6;21988:14;21985:2;;;22005:5;;;;;;21985:2;;22066:16;22060:4;22056:27;22049:4;22040:6;22035:3;22031:16;22027:27;22024:60;22021:2;;;22087:5;;;;;22021:2;22152;22131:15;-1:-1:-1;;22127:29:12;22118:39;;22159:4;22114:50;22110:2;22103:62;22122:3;-1:-1:-1;;21473:717:12;:::o;22195:133::-;-1:-1:-1;;;;;;22271:32:12;;22261:43;;22251:2;;22318:1;22315;22308:12
Swarm Source
ipfs://09bcfd2acb941ee2a3d642d75e8a4c7169b33cbd77faf5f6424267fcd4e7d17a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.