Source Code
Overview
ETH Balance
0.0000031 ETH
Token Holdings
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4868073 | 2 days ago | 0 ETH | ||||
4868073 | 2 days ago | 0 ETH | ||||
4868073 | 2 days ago | 0 ETH | ||||
4868073 | 2 days ago | 0 ETH | ||||
4868073 | 2 days ago | 0 ETH | ||||
4868073 | 2 days ago | 0 ETH | ||||
4868073 | 2 days ago | 0 ETH | ||||
4868073 | 2 days ago | 0 ETH | ||||
4868073 | 2 days ago | 0 ETH | ||||
4868073 | 2 days ago | 0 ETH | ||||
4868073 | 2 days ago | 0.0000011 ETH | ||||
4835591 | 2 days ago | 0 ETH | ||||
4835591 | 2 days ago | 0 ETH | ||||
4835591 | 2 days ago | 0 ETH | ||||
4835591 | 2 days ago | 0 ETH | ||||
4835591 | 2 days ago | 0 ETH | ||||
4835591 | 2 days ago | 0 ETH | ||||
4835591 | 2 days ago | 0 ETH | ||||
4835591 | 2 days ago | 0 ETH | ||||
4835591 | 2 days ago | 0 ETH | ||||
4835591 | 2 days ago | 0 ETH | ||||
4835591 | 2 days ago | 0.000001 ETH | ||||
4835323 | 2 days ago | 0 ETH | ||||
4835323 | 2 days ago | 0 ETH | ||||
4835323 | 2 days ago | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
BattlePass
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract BattlePass is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; // Mapping to store tier information mapping(Tier => TierInfo) public tierInfo; // Tier information enum Tier { RARE, EPIC, LEGENDARY } struct TierInfo { uint256 maxSupply; uint256 price; uint256 minted; } // Token ID counter Counters.Counter private _tokenIdCounter; // Base URI for metadata string private _baseTokenURI; // Add mapping to track token tiers mapping(uint256 => Tier) public tokenTier; // Events event BattlePassMinted(address indexed to, Tier tier, uint256 tokenId); // Add custom errors error TierSoldOut(); error TokenDoesNotExist(); constructor(string memory baseURI) ERC721("BattlePass", "BPASS") { _baseTokenURI = baseURI; // Initialize tier information with ETH prices (in wei) tierInfo[Tier.RARE] = TierInfo(2500, 0.000001 ether, 0); // 0.000001 ETH tierInfo[Tier.EPIC] = TierInfo(500, 0.0000011 ether, 0); // 0.0000011 ETH tierInfo[Tier.LEGENDARY] = TierInfo(25, 0.0000012 ether, 0); // 0.0000012 ETH } function mint(Tier _tier) external payable { TierInfo storage tier = tierInfo[_tier]; if (tier.minted >= tier.maxSupply) revert TierSoldOut(); // Check if correct ETH amount was sent require(msg.value == tier.price, "Incorrect ETH amount"); // Mint token uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(msg.sender, tokenId); // Store the tier information for this token tokenTier[tokenId] = _tier; // Update minted count tier.minted++; emit BattlePassMinted(msg.sender, _tier, tokenId); } function withdrawETH(address payable to) external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = to.call{value: balance}(""); require(success, "ETH transfer failed"); } function getTierMinted(Tier _tier) external view returns (uint256) { return tierInfo[_tier].minted; } function getTierMaxSupply(Tier _tier) external view returns (uint256) { return tierInfo[_tier].maxSupply; } function getTierPrice(Tier _tier) external view returns (uint256) { return tierInfo[_tier].price; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { if (!_exists(tokenId)) revert TokenDoesNotExist(); return string(abi.encodePacked(_baseURI(), tokenId.toString())); } /// @notice Getter function for token tier function getTokenTier(uint256 tokenId) external view returns (Tier) { if (!_exists(tokenId)) revert TokenDoesNotExist(); return tokenTier[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// 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 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// 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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// 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); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": true, "libraries": {} }
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"TierSoldOut","type":"error"},{"inputs":[],"name":"TokenDoesNotExist","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"enum BattlePass.Tier","name":"tier","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BattlePassMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BattlePass.Tier","name":"_tier","type":"uint8"}],"name":"getTierMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BattlePass.Tier","name":"_tier","type":"uint8"}],"name":"getTierMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BattlePass.Tier","name":"_tier","type":"uint8"}],"name":"getTierPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenTier","outputs":[{"internalType":"enum BattlePass.Tier","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BattlePass.Tier","name":"_tier","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum BattlePass.Tier","name":"","type":"uint8"}],"name":"tierInfo","outputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenTier","outputs":[{"internalType":"enum BattlePass.Tier","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010003d35149cd4d3114c4d4994b633c0f2dc4d95ff543ebfe0c08f86762d90b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6368726f6e6f666f7267652d626174746c65706173732e636f6d2f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000c0000000000020000006004100270000003570340019700030000003103550002000000010355000003570040019d0000008004000039000000400040043f0000000100200190000000230000c13d000000040030008c000000420000413d000000000201043b000000e002200270000003680020009c0000005d0000a13d000003690020009c000000700000a13d0000036a0020009c0000017c0000a13d0000036b0020009c000002080000213d0000036e0020009c0000033f0000613d0000036f0020009c000000420000c13d0000000001000416000000000001004b000000420000c13d00000000010300190d5708ab0000040f0d5708b70000040f0000000201100039000003610000013d0000000002000416000000000002004b000000420000c13d0000001f0230003900000358022001970000008002200039000000400020043f0000001f0530018f00000359063001980000008002600039000000330000613d000000000701034f000000007807043c0000000004840436000000000024004b0000002f0000c13d000000000005004b000000400000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c000000440000813d000000000100001900000d5900010430000000800200043d0000035a0020009c000000420000213d0000001f01200039000000000031004b00000000040000190000035b040080410000035b01100197000000000001004b00000000050000190000035b050040410000035b0010009c000000000504c019000000000005004b000000420000c13d000000800120003900000000010104330000035a0010009c000000ff0000a13d0000039101000041000000000010043f0000004101000039000000040010043f000003920100004100000d59000104300000037a0020009c000000910000213d000003820020009c0000019c0000213d000003860020009c000002290000613d000003870020009c0000023d0000613d000003880020009c000000420000c13d000000240030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000401100370000000000101043b0d5709240000040f000003620000013d000003730020009c000001b80000213d000003770020009c0000025b0000613d000003780020009c000002900000613d000003790020009c000000420000c13d0000000001000416000000000001004b000000420000c13d0000000601000039000000000201041a00000361032001970000000005000411000000000053004b000003a70000c13d0000036002200197000000000021041b0000000001000414000003570010009c0000035701008041000000c00110021000000362011001c70000800d020000390000000303000039000003630400004100000000060000190d570d4d0000040f0000000100200190000000420000613d000000000100001900000d580001042e0000037b0020009c000001dd0000213d0000037f0020009c000002a70000613d000003800020009c000002ba0000613d000003810020009c000000420000c13d000000240030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000402100370000000000502043b0000035a0050009c000000420000213d0000002302500039000000000032004b000000420000813d0000000406500039000000000261034f000000000202043b0000035a0020009c000000570000213d0000001f07200039000003bf077001970000003f07700039000003bf07700197000003af0070009c000000570000213d00000024055000390000008007700039000000400070043f000000800020043f0000000005520019000000000035004b000000420000213d0000002003600039000000000331034f000003bf052001980000001f0620018f000000a001500039000000c30000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b000000bf0000c13d000000000006004b000000d00000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a00120003900000000000104350000000601000039000000000101041a00000361011001970000000002000411000000000021004b000004e60000c13d000000800200043d0000035a0020009c000000570000213d0000000901000039000000000501041a000000010050019000000001035002700000007f0330618f0000001f0030008c00000000060000390000000106002039000000000565013f0000000100500190000003120000c13d000000200030008c000000f70000413d000000000010043f0000001f052000390000000505500270000003b00550009a000000200020008c0000038f050040410000001f033000390000000503300270000003b00330009a000000000035004b000000f70000813d000000000005041b0000000105500039000000000035004b000000f30000413d0000001f0020008c000006290000a13d000000000010043f000003bf042001980000063a0000c13d000000a0050000390000038f03000041000006480000013d0000001f04100039000003bf044001970000003f04400039000003bf04400197000000400600043d0000000004460019000000000064004b000000000500003900000001050040390000035a0040009c000000570000213d0000000100500190000000570000c13d0000008003300039000000400040043f000a00000006001d0000000004160436000900000004001d000000a0022000390000000004210019000000000034004b000000420000213d000000000001004b0000000906000029000001200000613d000000000300001900000000043600190000000005230019000000000505043300000000005404350000002003300039000000000013004b000001190000413d0000000a0110002900000020011000390000000000010435000000400300043d0000035c0030009c000000570000213d0000004001300039000000400010043f0000000a0100003900000000071304360000035d010000410000000000170435000000400400043d0000035c0040009c000000570000213d0000004001400039000000400010043f000000050100003900000000051404360000035e01000041000000000015043500000000060304330000035a0060009c000000570000213d000000000100041a000000010210019000000001081002700000007f0880618f0000001f0080008c00000000010000390000000101002039000000000012004b000003120000c13d000000200080008c000700000004001d000500000005001d000001670000413d000300000008001d000400000007001d000800000006001d000600000003001d000000000000043f0000000001000414000003570010009c0000035701008041000000c0011002100000035f011001c700008010020000390d570d520000040f0000000100200190000000420000613d00000008060000290000001f026000390000000502200270000000200060008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000070400002900000006030000290000000407000029000001670000813d000000000002041b0000000102200039000000000012004b000001630000413d0000001f0060008c000004db0000a13d000800000006001d000600000003001d000000000000043f0000000001000414000003570010009c0000035701008041000000c0011002100000035f011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000200200008a0000000802200180000000000101043b000005be0000c13d00000020030000390000000606000029000005cb0000013d000003700020009c0000035b0000613d000003710020009c000003690000613d000003720020009c000000420000c13d000000240030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000401100370000000000101043b000a00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000101041a0000036100100198000003e00000c13d000000400100043d000003590000013d000003830020009c000002c20000613d000003840020009c000002e90000613d000003850020009c000000420000c13d0000000001000416000000000001004b000000420000c13d00000000010300190d5708ab0000040f0d5708b70000040f0000000102100039000000000202041a000000000301041a0000000201100039000000000101041a000000400400043d00000040054000390000000000150435000000200140003900000000002104350000000000340435000003570040009c00000357040080410000004001400210000003b2011001c700000d580001042e000003740020009c000002fb0000613d000003750020009c000003040000613d000003760020009c000000420000c13d000000440030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000402100370000000000202043b000a00000002001d000003610020009c000000420000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b000000420000c13d00000000020004110000000a0020006c0000040f0000c13d0000038901000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000039801000041000000c40010043f000003990100004100000d59000104300000037c0020009c000003180000613d0000037d0020009c000003210000613d0000037e0020009c000000420000c13d000000240030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000401100370000000000101043b000a00000001001d000003610010009c000000420000213d0000000601000039000000000101041a00000361011001970000000002000411000000000021004b000003a70000c13d000003ad010000410000000000100443000000000100041000000004001004430000000001000414000003570010009c0000035701008041000000c001100210000003a5011001c70000800a020000390d570d520000040f0000000100200190000007350000613d000000000301043b00000000010004140000000a04000029000000040040008c000004690000c13d00000001020000390000000101000031000004f90000013d0000036c0020009c0000038d0000613d0000036d0020009c000000420000c13d000000240030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000401100370000000000601043b000003610060009c000000420000213d0000000601000039000000000201041a00000361032001970000000005000411000000000053004b000003a70000c13d000000000006004b0000045d0000c13d0000038901000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000038a01000041000000c40010043f0000038b01000041000000e40010043f0000038c0100004100000d5900010430000000240030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000401100370000000000201043b000003a800200198000000420000c13d0000000101000039000003a902200197000003bc0020009c000003dd0000613d000003bd0020009c000003dd0000613d000003be0020009c000000000100c019000000800010043f0000039b0100004100000d580001042e0000000001000416000000000001004b000000420000c13d000000000200041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000003120000c13d000000800010043f000000000003004b000003c10000613d000000000000043f000000000001004b0000000002000019000003c60000613d000003bb030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002530000413d000003c60000013d000000240030008c000000420000413d0000000401100370000000000101043b000a00000001001d000000020010008c000000420000213d0000000a01000029000000000010043f0000000701000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000201041a0000000204100039000000000304041a000000000023004b0000043f0000813d0000000101100039000000000101041a0000000002000416000000000012004b000004700000c13d0000000801000039000000000301041a0000000102300039000000000021041b0000000001000415000000400500043d000003a10050009c000000570000213d000800000001001d000500000004001d00000000010004110000002002500039000700000002001d000000400020043f000600000005001d0000000000050435000903610010019c000005960000c13d000000400100043d0000004402100039000003ab03000041000004e90000013d000000240030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000401100370000000000101043b000003610010009c000000420000213d000000000001004b000003d70000c13d0000038901000041000000800010043f0000002001000039000000840010043f0000002a01000039000000a40010043f0000039c01000041000000c40010043f0000039d01000041000000e40010043f0000038c0100004100000d59000104300000000001000416000000000001004b000000420000c13d00000000010300190d5708990000040f000a00000001001d000900000002001d000800000003001d000000400100043d000700000001001d0d5708cf0000040f000000070400002900000000000404350000000a01000029000000090200002900000008030000290d5709ab0000040f000000000100001900000d580001042e0000000001000416000000000001004b000000420000c13d00000000010300190d5708ab0000040f0d5708b70000040f0000000101100039000003610000013d000000440030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000402100370000000000202043b000a00000002001d000003610020009c000000420000213d0000002401100370000000000101043b000900000001001d000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000101041a0000036101100198000004470000c13d000000400100043d0000006402100039000003b90300004100000000003204350000004402100039000003ba03000041000000000032043500000024021000390000002903000039000004520000013d0000000001000416000000000001004b000000420000c13d00000000010300190d5708990000040f000a00000001001d000900000002001d0000000002030019000800000003001d00000000010004110d570bd90000040f0d57095d0000040f0000000a01000029000000090200002900000008030000290d570c6e0000040f000000000100001900000d580001042e0000000001000416000000000001004b000000420000c13d0000000601000039000000000101041a0000036101100197000000800010043f0000039b0100004100000d580001042e0000000001000416000000000001004b000000420000c13d0000000103000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000003b00000613d0000039101000041000000000010043f0000002201000039000000040010043f000003920100004100000d5900010430000000240030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000401100370000000000101043b0d5709740000040f000003620000013d000000240030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000401100370000000000101043b000000000010043f0000000a01000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000101041a000000ff0110018f000000030010008c000003620000413d0000039101000041000000000010043f0000002101000039000000040010043f000003920100004100000d5900010430000000240030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000401100370000000000101043b000a00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000301034f000000400100043d000000000203043b000000000202041a0000036100200198000003f30000c13d0000039502000041000004410000013d0000000001000416000000000001004b000000420000c13d00000000010300190d5708ab0000040f0d5708b70000040f000000000101041a000000400200043d0000000000120435000003570020009c000003570200804100000040012002100000038d011001c700000d580001042e000000840030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000402100370000000000202043b000a00000002001d000003610020009c000000420000213d0000002402100370000000000202043b000900000002001d000003610020009c000000420000213d0000006402100370000000000402043b0000035a0040009c000000420000213d0000002302400039000000000032004b000000420000813d0000000402400039000000000121034f000000000201043b00000024014000390d5708ec0000040f00000044020000390000000202200367000000000302043b00000000040100190000000a0100002900000009020000290d5709ab0000040f000000000100001900000d580001042e000000440030008c000000420000413d0000000002000416000000000002004b000000420000c13d0000000402100370000000000202043b000003610020009c000000420000213d0000002401100370000000000101043b000a00000001001d000003610010009c000000420000213d000000000020043f0000000501000039000000200010043f00000040010000390d570d3c0000040f0000000a020000290d57099b0000040f000000000101041a000000ff001001900000000001000039000000010100c039000003620000013d0000038901000041000000800010043f0000002001000039000000840010043f000000a40010043f000003ac01000041000000c40010043f000003990100004100000d5900010430000000800010043f000000000004004b000003c10000613d000000000030043f000000000001004b0000000002000019000003c60000613d0000039a030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000003b90000413d000003c60000013d000003c002200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000390d5708da0000040f000000400100043d000a00000001001d00000080020000390d5708840000040f0000000a020000290000000001210049000003570010009c00000357010080410000006001100210000003570020009c00000357020080410000004002200210000000000121019f00000d580001042e000000000010043f0000000301000039000000200010043f00000040010000390d570d3c0000040f000000000101041a000000800010043f0000039b0100004100000d580001042e0000000a01000029000000000010043f0000000a01000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000101041a000000ff0110018f000000020010008c000003390000213d000003620000013d0000000905000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000030000390000000103002039000000000334013f0000000100300190000003120000c13d0000000003210436000000000006004b000004ab0000613d000000000050043f000000000002004b0000000004000019000004b00000613d0000038f0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000004070000413d000004b00000013d000000000020043f0000000501000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000201041a000003c0022001970000000903000029000000000232019f000000000021041b000000400100043d0000000000310435000003570010009c000003570100804100000040011002100000000002000414000003570020009c0000035702008041000000c002200210000000000112019f0000035f011001c70000800d020000390000000303000039000003970400004100000000050004110000000a060000290000008c0000013d000000400100043d0000039e020000410000000000210435000003570010009c0000035701008041000000400110021000000396011001c700000d59000104300000000a0010006b000004770000c13d000000400100043d0000006402100039000003b70300004100000000003204350000004402100039000003b803000041000000000032043500000024021000390000002103000039000000000032043500000389020000410000000000210435000000040210003900000020030000390000000000320435000003570010009c00000357010080410000004001100210000003b5011001c700000d59000104300000036002200197000000000262019f000000000021041b0000000001000414000003570010009c0000035701008041000000c00110021000000362011001c70000800d02000039000000030300003900000363040000410000008c0000013d000003570010009c0000035701008041000000c001100210000000000003004b000004f10000c13d0000000002040019000004f40000013d000000400100043d00000044021000390000039f03000041000000000032043500000024021000390000001403000039000005030000013d0000000002000411000000000012004b000005370000c13d0000000901000029000000000010043f0000000401000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000201041a00000360022001970000000a022001af000000000021041b0000000901000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000101041a0000036105100198000002df0000613d0000000001000414000003570010009c0000035701008041000000c00110021000000362011001c70000800d020000390000000403000039000003b6040000410000000a0600002900000009070000290d570d4d0000040f0000000100200190000000420000613d0000008f0000013d000003c0044001970000000000430435000000000002004b000000200400003900000000040060390000003f02400039000003bf022001970000000008120019000000000028004b000000000200003900000001020040390000035a0080009c000000570000213d0000000100200190000000570000c13d000000400080043f0000000a05000029000000000005004b0000055f0000c13d0000035c0080009c000000570000213d0000004002800039000000400020043f00000020028000390000039403000041000000000032043500000001020000390000000000280435000900000008001d000000400200043d000a00000002001d00000020022000390d570bcb0000040f000000000201001900000009010000290d570bcb0000040f0000000a030000290000000002310049000000200120008a000000000013043500000000010300190d5708da0000040f000000400100043d000900000001001d0000000a020000290d5708840000040f0000000902000029000003ce0000013d000000000006004b0000000001000019000004df0000613d00000000010704330000000302600210000003c10220027f000003c102200167000000000121016f0000000102600210000000000121019f000005d90000013d000000400100043d0000004402100039000003ac030000410000000000320435000003890200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000005080000013d00000362011001c7000080090200003900000000050000190d570d4d0000040f00030000000103550000006001100270000103570010019d0000035701100197000000000001004b0000050e0000c13d00000001002001900000008f0000c13d000000400100043d0000004402100039000003ae03000041000000000032043500000024021000390000001303000039000000000032043500000389020000410000000000210435000000040210003900000020030000390000000000320435000003570010009c00000357010080410000004001100210000003a0011001c700000d59000104300000035a0010009c000000570000213d0000001f04100039000003bf044001970000003f04400039000003bf05400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000035a0050009c000000570000213d0000000100600190000000570000c13d000000400050043f0000000006140436000003bf031001980000001f0410018f00000000013600190000000305000367000005290000613d000000000705034f000000007807043c0000000006860436000000000016004b000005250000c13d000000000004004b000004fb0000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000004fb0000013d000000000010043f0000000501000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b00000000020004110000036102200197000000000020043f000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000101041a000000ff001001900000047a0000c13d000000400100043d0000006402100039000003b30300004100000000003204350000004402100039000003b403000041000000000032043500000024021000390000003803000039000004520000013d00000000020000190000000004020019000000010220003a000005b80000613d000000090050008c0000000a0550011a000005600000213d000003900040009c000000570000213d000003bf054001970000005f04500039000003bf064001970000000004860019000000000064004b000000000600003900000001060040390000035a0040009c000000570000213d0000000100600190000000570000c13d000000400040043f000000000908001900000000042804360000002006500039000003bf056001980000001f0360018f000005820000613d0000000005540019000000000600003100000002066003670000000007040019000000006806043c0000000007870436000000000057004b0000057e0000c13d000000000003004b0000000a070000290000000008090019000000000002004b000005b80000613d000000010220008a0000000003080433000000000023004b000006ca0000a13d0000000003420019000000090070008c0000000a5770011a000000f80550021000000000060304330000039306600197000000000565019f00000394055001c70000000000530435000005850000213d000004c70000013d000400000003001d000000000030043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000101041a0000036100100198000006330000c13d0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000201041a000000010220003a000006d00000c13d0000039101000041000000000010043f0000001101000039000000040010043f000003920100004100000d5900010430000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000005c40000c13d0000000805000029000000000052004b000005d60000813d0000000302500210000000f80220018f000003c10220027f000003c10220016700000000036300190000000003030433000000000223016f000000000021041b000000010150021000000001011001bf0000000704000029000000000010041b00000000030404330000035a0030009c000000570000213d0000000101000039000000000101041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f0000000100100190000003120000c13d000800000003001d000600000004001d000000200040008c000006080000413d0000000101000039000000000010043f0000000001000414000003570010009c0000035701008041000000c0011002100000035f011001c700008010020000390d570d520000040f0000000100200190000000420000613d00000008030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000006080000813d000000000002041b0000000102200039000000000012004b000006040000413d00000008010000290000001f0010008c0000061c0000a13d0000000101000039000000000010043f0000000001000414000003570010009c0000035701008041000000c0011002100000035f011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000200200008a0000000802200180000000000101043b000006570000c13d0000002003000039000006640000013d000000080000006b0000000001000019000006210000613d0000000501000029000000000101043300000008040000290000000302400210000003c10220027f000003c102200167000000000121016f0000000102400210000000000121019f000006720000013d000000000002004b00000000030000190000062d0000613d000000a00300043d0000000304200210000003c10440027f000003c104400167000000000443016f0000000103200210000006530000013d000000400100043d0000004402100039000003a203000041000000000032043500000024021000390000001c03000039000005030000013d0000038f030000410000002006000039000000010540008a0000000505500270000003b10550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b0000063f0000c13d000000a005700039000000000024004b000006510000813d0000000304200210000000f80440018f000003c10440027f000003c1044001670000000005050433000000000445016f000000000043041b00000001030000390000000104200210000000000234019f000000000021041b000000000100001900000d580001042e000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000070600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000065d0000c13d000000080020006c0000066f0000813d00000008020000290000000302200210000000f80220018f000003c10220027f000003c10220016700000007033000290000000003030433000000000223016f000000000021041b0000000801000029000000010110021000000001011001bf0000000102000039000000000012041b0000000601000039000000000201041a00000360032001970000000006000411000000000363019f000000000031041b00000000010004140000036105200197000003570010009c0000035701008041000000c00110021000000362011001c70000800d02000039000000030300003900000363040000410d570d4d0000040f0000000100200190000000420000613d0000000a010000290000000001010433000800000001001d0000035a0010009c000000570000213d0000000901000039000000000101041a000000010010019000000001021002700000007f0220618f000700000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000003120000c13d0000000701000029000000200010008c000006b60000413d0000000901000039000000000010043f0000000001000414000003570010009c0000035701008041000000c0011002100000035f011001c700008010020000390d570d520000040f0000000100200190000000420000613d00000008030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000006b60000813d000000000002041b0000000102200039000000000012004b000006b20000413d00000008010000290000001f0010008c000007360000a13d0000000901000039000000000010043f0000000001000414000003570010009c0000035701008041000000c0011002100000035f011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000200200008a0000000802200180000000000101043b000007420000c13d00000020030000390000074f0000013d0000039101000041000000000010043f0000003201000039000000040010043f000003920100004100000d5900010430000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000201041a00000360022001970000000906000029000000000262019f000000000021041b0000000001000414000003570010009c0000035701008041000000c00110021000000362011001c70000800d020000390000000403000039000003a304000041000000000500001900000004070000290d570d4d0000040f0000000100200190000000420000613d0000000001000415000300000001001d000003a4010000410000000000100443000000000100041100000004001004430000000001000414000003570010009c0000035701008041000000c001100210000003a5011001c700008002020000390d570d520000040f0000000100200190000007350000613d000000000101043b000000000001004b000007b50000c13d0000000001000415000000030110006900000000010000020000000001000415000000080110006900000000010000020000000401000029000000000010043f0000000a01000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000000420000613d000000000101043b000000000201041a000003c0022001970000000a022001af000000000021041b0000000501000029000000000101041a000000010110003a000005b80000613d0000000502000029000000000012041b000000400100043d0000002002100039000000040300002900000000003204350000000a020000290000000000210435000003570010009c000003570100804100000040011002100000000002000414000003570020009c0000035702008041000000c002200210000000000112019f0000038e011001c70000800d020000390000000203000039000003aa0400004100000000050004110000008c0000013d000000000001042f000000080000006b00000000010000190000073b0000613d0000000901000029000000000101043300000008040000290000000302400210000003c10220027f000003c102200167000000000121016f00000001024002100000075d0000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000a0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000007480000c13d000000080020006c0000075a0000813d00000008020000290000000302200210000000f80220018f000003c10220027f000003c1022001670000000a033000290000000003030433000000000223016f000000000021041b000000080100002900000001011002100000000102000039000000000121019f0000000902000039000000000012041b0d5708780000040f000800000001001d000009c4020000390000000002210436000900000002001d000003640300004100000000003204350000004002100039000a00000002001d0000000000020435000000000000043f0000000701000039000000200010043f00000040010000390d570d3c0000040f00000008020000290000000002020433000000000021041b000000090200002900000000020204330000000103100039000000000023041b0000000a0200002900000000020204330000000201100039000000000021041b0d5708780000040f000800000001001d000001f4020000390000000002210436000900000002001d000003650300004100000000003204350000004002100039000a00000002001d00000000000204350000000101000039000000000010043f0000000701000039000000200010043f00000040010000390d570d3c0000040f00000008020000290000000002020433000000000021041b000000090200002900000000020204330000000103100039000000000023041b0000000a0200002900000000020204330000000201100039000000000021041b0d5708780000040f000800000001001d00000019020000390000000002210436000900000002001d000003660300004100000000003204350000004002100039000a00000002001d00000000000204350000000201000039000000000010043f0000000701000039000000200010043f00000040010000390d570d3c0000040f00000008020000290000000002020433000000000021041b000000090200002900000000020204330000000103100039000000000023041b0000000a0200002900000000020204330000000201100039000000000021041b000000200100003900000100001004430000012000000443000003670100004100000d580001042e000000400300043d00000064013000390000008002000039000100000002001d0000000000210435000000440130003900000004020000290000000000210435000003a6010000410000000000130435000000040130003900000009020000290000000000210435000000240130003900000000000104350000000601000029000000000101043300000084023000390000000000120435000200000003001d000000a402300039000000000001004b0000000706000029000007d50000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000007ce0000413d0000000002210019000000000002043500000000020004140000000903000029000000040030008c000007e30000c13d00000000050004150000000c0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000008170000013d0000001f01100039000003bf01100197000000a401100039000003570010009c000003570100804100000060011002100000000203000029000003570030009c00000357030080410000004003300210000000000131019f000003570020009c0000035702008041000000c002200210000000000112019f00000009020000290d570d4d0000040f00000060031002700000035703300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000205700029000008030000613d000000000801034f0000000209000029000000008a08043c0000000009a90436000000000059004b000007ff0000c13d000000000006004b000008100000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000000b0550008a00000005055002100000000100200190000008310000613d0000001f01400039000000600210018f0000000201200029000000000021004b000000000200003900000001020040390000035a0010009c000000570000213d0000000100200190000000570000c13d000000400010043f000000200030008c000000420000413d00000002010000290000000001010433000003a800100198000000420000c13d0000000502500270000000000201001f000000000200041500000003022000690000000002000002000003a901100197000003a60010009c000007060000613d0000085f0000013d000000000003004b000008350000c13d00000060020000390000085c0000013d0000001f0230003900000358022001970000003f02200039000003a704200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000035a0040009c000000570000213d0000000100500190000000570000c13d000000400040043f0000001f0430018f00000000063204360000035905300198000100000006001d00000000035600190000084f0000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b0000084b0000c13d000000000004004b0000085c0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000086f0000c13d000000400200043d000a00000002001d0000038901000041000000000012043500000004012000390d570d2e0000040f0000000a020000290000000001210049000003570010009c00000357010080410000006001100210000003570020009c00000357020080410000004002200210000000000121019f00000d59000104300000000102000029000003570020009c00000357020080410000004002200210000003570010009c00000357010080410000006001100210000000000121019f00000d5900010430000000400100043d000003c20010009c0000087e0000813d0000006002100039000000400020043f000000000001042d0000039101000041000000000010043f0000004101000039000000040010043f000003920100004100000d590001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000008930000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000088c0000413d000000000312001900000000000304350000001f02200039000003bf022001970000000001120019000000000001042d000003c30010009c000008a90000213d000000630010008c000008a90000a13d00000002030003670000000401300370000000000101043b000003610010009c000008a90000213d0000002402300370000000000202043b000003610020009c000008a90000213d0000004403300370000000000303043b000000000001042d000000000100001900000d5900010430000003c30010009c000008b50000213d000000230010008c000008b50000a13d00000004010000390000000201100367000000000101043b000000020010008c000008b50000213d000000000001042d000000000100001900000d5900010430000000030010008c000008c70000813d000000000010043f0000000701000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000008cd0000613d000000000101043b000000000001042d0000039101000041000000000010043f0000002101000039000000040010043f000003920100004100000d5900010430000000000100001900000d5900010430000003c40010009c000008d40000813d0000002001100039000000400010043f000000000001042d0000039101000041000000000010043f0000004101000039000000040010043f000003920100004100000d59000104300000001f02200039000003bf022001970000000001120019000000000021004b000000000200003900000001020040390000035a0010009c000008e60000213d0000000100200190000008e60000c13d000000400010043f000000000001042d0000039101000041000000000010043f0000004101000039000000040010043f000003920100004100000d5900010430000003c50020009c0000091c0000813d00000000040100190000001f01200039000003bf011001970000003f01100039000003bf05100197000000400100043d0000000005510019000000000015004b000000000700003900000001070040390000035a0050009c0000091c0000213d00000001007001900000091c0000c13d000000400050043f00000000052104360000000007420019000000000037004b000009220000213d000003bf062001980000001f0720018f000000020440036700000000036500190000090c0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000009080000c13d000000000007004b000009190000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d0000039101000041000000000010043f0000004101000039000000040010043f000003920100004100000d5900010430000000000100001900000d59000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000009470000613d000000000101043b000000000101041a0000036100100198000009490000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000009470000613d000000000101043b000000000101041a0000036101100197000000000001042d000000000100001900000d5900010430000000400100043d0000006402100039000003c60300004100000000003204350000004402100039000003c703000041000000000032043500000024021000390000002c03000039000000000032043500000389020000410000000000210435000000040210003900000020030000390000000000320435000003570010009c00000357010080410000004001100210000003b5011001c700000d5900010430000000000001004b000009600000613d000000000001042d000000400100043d0000006402100039000003c80300004100000000003204350000004402100039000003c903000041000000000032043500000024021000390000003103000039000000000032043500000389020000410000000000210435000000040210003900000020030000390000000000320435000003570010009c00000357010080410000004001100210000003b5011001c700000d5900010430000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000009850000613d000000000101043b000000000101041a0000036101100198000009870000613d000000000001042d000000000100001900000d5900010430000000400100043d0000006402100039000003b90300004100000000003204350000004402100039000003ba03000041000000000032043500000024021000390000002903000039000000000032043500000389020000410000000000210435000000040210003900000020030000390000000000320435000003570010009c00000357010080410000004001100210000003b5011001c700000d59000104300000036102200197000000000020043f000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f0000000100200190000009a90000613d000000000101043b000000000001042d000000000100001900000d59000104300009000000000002000100000004001d000400000002001d000500000001001d000700000003001d000000000030043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000101041a000003610010019800000b440000613d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000101041a000003610110019800000b340000613d0000000002000411000303610020019b000000030010006b00000a150000613d000000000010043f0000000501000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000101041a000000ff0010019000000a150000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000101041a000003610010019800000b710000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000101041a0000036101100197000000030010006c00000b780000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000101041a000603610010019c00000b340000613d00000005010000290000036101100197000000060010006b00000b4e0000c13d0000000401000029000503610010019c00000b580000613d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000201041a0000036002200197000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000101041a000003610510019800000b340000613d0000000001000414000003570010009c0000035701008041000000c00110021000000362011001c70000800d020000390000000403000039000003b604000041000000000600001900000007070000290d570d4d0000040f000000010020019000000b320000613d0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000201041a000000000002004b00000b3e0000613d000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000201041a000000010220003a00000b3e0000613d000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000b320000613d000000000101043b000000000201041a00000360022001970000000506000029000000000262019f000000000021041b0000000001000414000003570010009c0000035701008041000000c00110021000000362011001c70000800d020000390000000403000039000003a304000041000000060500002900000007070000290d570d4d0000040f000000010020019000000b320000613d0000000001000415000200000001001d000003a4010000410000000000100443000000040100002900000004001004430000000001000414000003570010009c0000035701008041000000c001100210000003a5011001c700008002020000390d570d520000040f000000010020019000000b6c0000613d000000000101043b000000000001004b00000adf0000613d000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b0003900000006020000290000000000210435000003a60100004100000000001b04350000000401b00039000000030200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b00000ad10000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b00000aca0000413d0000000002310019000000000002043500000000040004140000000502000029000000040020008c00000ae30000c13d0000000005000415000000090550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900000b190000013d000000000100041500000002011000690000000001000002000000000001042d000600000007001d0000001f01100039000003bf01100197000000a401100039000003570010009c000003570100804100000060011002100000035700b0009c000003570300004100000000030b40190000004003300210000000000131019f000003570040009c0000035704008041000000c003400210000000000113019f00070000000b001d0d570d4d0000040f000000070b00002900000060031002700000035703300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000b050000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000b010000c13d000000000006004b00000b120000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000080550008a0000000505500210000000010020019000000b6d0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000035a0010009c00000bbc0000213d000000010020019000000bbc0000c13d000000400010043f000000200030008c00000b320000413d00000000010b0433000003a80010019800000b320000c13d0000000502500270000000000201001f000000000200041500000002022000690000000002000002000003a901100197000003a60010009c00000bac0000c13d000000000001042d000000000100001900000d5900010430000000400100043d0000006402100039000003b90300004100000000003204350000004402100039000003ba0300004100000000003204350000002402100039000000290300003900000b610000013d0000039101000041000000000010043f0000001101000039000000040010043f000003920100004100000d5900010430000000400100043d0000006402100039000003c60300004100000000003204350000004402100039000003ce03000041000000000032043500000024021000390000002c0300003900000b610000013d000000400100043d0000006402100039000003ca0300004100000000003204350000004402100039000003cb0300004100000000003204350000002402100039000000250300003900000b610000013d000000400100043d0000006402100039000003cc0300004100000000003204350000004402100039000003cd03000041000000000032043500000024021000390000002403000039000000000032043500000389020000410000000000210435000000040210003900000020030000390000000000320435000003570010009c00000357010080410000004001100210000003b5011001c700000d5900010430000000000001042f000000000003004b00000b820000c13d000000600200003900000ba90000013d000000400100043d0000006402100039000003c60300004100000000003204350000004402100039000003c70300004100000b4a0000013d000000400100043d0000006402100039000003c80300004100000000003204350000004402100039000003c90300004100000000003204350000002402100039000000310300003900000b610000013d0000001f0230003900000358022001970000003f02200039000003a704200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000035a0040009c00000bbc0000213d000000010050019000000bbc0000c13d000000400040043f0000001f0430018f00000000063204360000035905300198000600000006001d000000000356001900000b9c0000613d000000000601034f0000000607000029000000006806043c0000000007870436000000000037004b00000b980000c13d000000000004004b00000ba90000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000bc20000c13d000000400200043d000700000002001d0000038901000041000000000012043500000004012000390d570d2e0000040f00000007020000290000000001210049000003570010009c00000357010080410000006001100210000003570020009c00000357020080410000004002200210000000000121019f00000d59000104300000039101000041000000000010043f0000004101000039000000040010043f000003920100004100000d59000104300000000602000029000003570020009c00000357020080410000004002200210000003570010009c00000357010080410000006001100210000000000121019f00000d59000104300000000031010434000000000001004b00000bd60000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b00000bcf0000413d00000000012100190000000000010435000000000001042d0002000000000002000100000001001d000200000002001d000000000020043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000c470000613d000000000101043b000000000101041a000003610010019800000c490000613d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000c470000613d000000000101043b000000000101041a000003610110019800000c530000613d00000001020000290000036102200197000000000012004b00000c030000c13d0000000101000039000000000001042d000100000002001d000000000010043f0000000501000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000c470000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000c470000613d000000000101043b000000000101041a000000ff0110019000000c220000613d000000000001042d0000000201000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000c470000613d000000000101043b000000000101041a000003610010019800000c670000613d0000000201000029000000000010043f0000000401000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000c470000613d000000000101043b000000000101041a0000036101100197000000010010006c00000000010000390000000101006039000000000001042d000000000100001900000d5900010430000000400100043d0000006402100039000003c60300004100000000003204350000004402100039000003ce03000041000000000032043500000024021000390000002c0300003900000c5c0000013d000000400100043d0000006402100039000003b90300004100000000003204350000004402100039000003ba03000041000000000032043500000024021000390000002903000039000000000032043500000389020000410000000000210435000000040210003900000020030000390000000000320435000003570010009c00000357010080410000004001100210000003b5011001c700000d5900010430000000400100043d0000006402100039000003c60300004100000000003204350000004402100039000003c70300004100000c4f0000013d0004000000000002000100000002001d000200000001001d000400000003001d000000000030043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000cfe0000613d000000000101043b000000000101041a000303610010019c00000d000000613d00000002010000290000036101100197000000030010006b00000d100000c13d0000000101000029000203610010019c00000d1a0000613d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000cfe0000613d000000000101043b000000000201041a0000036002200197000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000cfe0000613d000000000101043b000000000101041a000003610510019800000d000000613d0000000001000414000003570010009c0000035701008041000000c00110021000000362011001c70000800d020000390000000403000039000003b604000041000000000600001900000004070000290d570d4d0000040f000000010020019000000cfe0000613d0000000301000029000000000010043f0000000301000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000cfe0000613d000000000101043b000000000201041a000000000002004b00000d0a0000613d000000010220008a000000000021041b0000000201000029000000000010043f0000000301000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000cfe0000613d000000000101043b000000000201041a000000010220003a00000d0a0000613d000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000003570010009c0000035701008041000000c0011002100000038e011001c700008010020000390d570d520000040f000000010020019000000cfe0000613d000000000101043b000000000201041a00000360022001970000000206000029000000000262019f000000000021041b0000000001000414000003570010009c0000035701008041000000c00110021000000362011001c70000800d020000390000000403000039000003a304000041000000030500002900000004070000290d570d4d0000040f000000010020019000000cfe0000613d000000000001042d000000000100001900000d5900010430000000400100043d0000006402100039000003b90300004100000000003204350000004402100039000003ba0300004100000000003204350000002402100039000000290300003900000d230000013d0000039101000041000000000010043f0000001101000039000000040010043f000003920100004100000d5900010430000000400100043d0000006402100039000003ca0300004100000000003204350000004402100039000003cb0300004100000000003204350000002402100039000000250300003900000d230000013d000000400100043d0000006402100039000003cc0300004100000000003204350000004402100039000003cd03000041000000000032043500000024021000390000002403000039000000000032043500000389020000410000000000210435000000040210003900000020030000390000000000320435000003570010009c00000357010080410000004001100210000003b5011001c700000d59000104300000006002100039000003cf0300004100000000003204350000004002100039000003d0030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000003570010009c000003570100804100000060011002100000000002000414000003570020009c0000035702008041000000c002200210000000000112019f00000362011001c700008010020000390d570d520000040f000000010020019000000d4b0000613d000000000101043b000000000001042d000000000100001900000d590001043000000d50002104210000000102000039000000000001042d0000000002000019000000000001042d00000d55002104230000000102000039000000000001042d0000000002000019000000000001042d00000d570000043200000d580001042e00000d59000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf426174746c65506173730000000000000000000000000000000000000000000042504153530000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000000000e8d4a51000000000000000000000000000000000000000000000000000000001001d1bf800000000000000000000000000000000000000000000000000000001176592e0000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006ecd230500000000000000000000000000000000000000000000000000000000abd21b3100000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000e2a51e0100000000000000000000000000000000000000000000000000000000abd21b3200000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c26b265f000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000006ecd23060000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000042842e0d000000000000000000000000000000000000000000000000000000006352211d000000000000000000000000000000000000000000000000000000006352211e00000000000000000000000000000000000000000000000000000000649e705f00000000000000000000000000000000000000000000000000000000690d83200000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000005586402d0000000000000000000000000000000000000000000000000000000055f804b300000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000035766f4b0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc08c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000000000000000000000002000000000000000000000000000000000000400000000000000000000000006e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af000000000000000000000000000000000000000000000000fffffffffffffffe4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000ceea21b600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000064000000800000000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf600000000000000000000000000000000000000200000008000000000000000004552433732313a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373000000000000000000000000000000000000000000000619f84800000000000000000000000000000000000000000000000000000000496e636f72726563742045544820616d6f756e740000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf4552433732313a20746f6b656e20616c7265616479206d696e74656400000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000b6da3a38ad8d4c27b8a8cd38e60416888b0cc279614e45675736f452a58bc42a4552433732313a206d696e7420746f20746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65729cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39455448207472616e73666572206661696c656400000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f91eabfe8e493f369f48e58fdf2609ff8809506ce57440a6f25fddc25308a385191eabfe8e493f369f48e58fdf2609ff8809506ce57440a6f25fddc25308a385000000000000000000000000000000000000000600000000000000000000000006e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f7700000000000000000000000000000000000000840000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e6578697374290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56301ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffa07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e6578776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f6f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f206164644552433732313a206f70657261746f7220717565727920666f72206e6f6e657863656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000000069fdd2b781fc1b41cfeee4b912820a05ddd13ca03b1c3d3906dc74fecf277642
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6368726f6e6f666f7267652d626174746c65706173732e636f6d2f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://chronoforge-battlepass.com/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [2] : 68747470733a2f2f6368726f6e6f666f7267652d626174746c65706173732e63
Arg [3] : 6f6d2f0000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.