Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
6080043 | 14 hrs ago | 0 ETH | ||||
6080043 | 14 hrs ago | 0 ETH | ||||
6080043 | 14 hrs ago | 0 ETH | ||||
6080043 | 14 hrs ago | 0 ETH | ||||
6080043 | 14 hrs ago | 0 ETH | ||||
6080043 | 14 hrs ago | 0 ETH | ||||
6080043 | 14 hrs ago | 0 ETH | ||||
6080033 | 14 hrs ago | 0 ETH | ||||
6080033 | 14 hrs ago | 0 ETH | ||||
6080033 | 14 hrs ago | 0 ETH | ||||
5530587 | 9 days ago | 0 ETH | ||||
5530587 | 9 days ago | 0 ETH | ||||
5530587 | 9 days ago | 0 ETH | ||||
5530575 | 9 days ago | 0 ETH | ||||
5530575 | 9 days ago | 0 ETH | ||||
5530575 | 9 days ago | 0 ETH | ||||
5530486 | 9 days ago | 0 ETH | ||||
5530486 | 9 days ago | 0 ETH | ||||
5530486 | 9 days ago | 0 ETH | ||||
5530436 | 9 days ago | 0 ETH | ||||
5530436 | 9 days ago | 0 ETH | ||||
5530436 | 9 days ago | 0 ETH | ||||
5530105 | 9 days ago | 0 ETH | ||||
5530105 | 9 days ago | 0 ETH | ||||
5530066 | 9 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.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xd454c5eE...08Db1baD7 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Purged
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/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract Purged is ERC20 { uint8 public percentOfDollar = 100; address private _owner; address private constant usdcTokenAddress = 0xe4C7fBB0a626ed208021ccabA6Be1566905E2dFc; uint256 public presaleAmount = 0; uint256 constant private million = 1000000; uint256 public bank = 1000000000000; uint256 public totalPresaleSold = 0; uint256 public dailyCoinBurn; uint256[256] private totalCoinBurn; mapping(address => bool) private contractAddresses; mapping(address => uint256) public presalePurchases; mapping(string => address) private referralCode; mapping(address => uint256) public playerLuckbox; constructor() ERC20("Purged", "PURGED") { _owner = msg.sender; } modifier onlyOwner() { require(msg.sender == _owner, "Caller is not the owner"); _; } modifier onlyPurgeGameContract() { //require(contractAddresses[msg.sender], "Caller is not a Purge Game contract"); _; } function resetDailyCoinBurn() external onlyPurgeGameContract{ dailyCoinBurn = 0; } function resetSeasonCoinBurn() external onlyPurgeGameContract{ for (uint8 i = 0; i < 256; i++) { totalCoinBurn[i] = 0; } } function getSeasonCoinBurn(uint8[] calldata traits) external view returns (uint256[] memory) { uint256[] memory burnCounts = new uint256[](traits.length); uint256 numberOfTraits = traits.length; for (uint8 i = 0; i < numberOfTraits; i++) { burnCounts[i] = totalCoinBurn[traits[i]]; } return burnCounts; } function getPlayerLuckbox(address player) external view returns(uint256){ return(playerLuckbox[player]); } function addToLuckbox(address player, uint256 amount) external onlyPurgeGameContract{ playerLuckbox[player] += amount; } // Allows users to create a referral code string that will pay them $PURGED when their referrals mint tokens. function createReferralCode(string calldata _referralCode) external { bytes memory referralCodeBytes = bytes(_referralCode); uint256 referralCodeLength = referralCodeBytes.length; require( referralCodeLength != 0 && referralCodeLength <= 32, "Invalid referral code length" ); require(referralCode[_referralCode] == address(0), "Referral code is taken"); referralCode[_referralCode] = msg.sender; } function getReferralCodeOwner(string calldata _referralCode) external view returns(address){ return(referralCode[_referralCode]); } function payReferrer(uint256 amount, string calldata _referralCode, address sender) external onlyPurgeGameContract{ address shill; shill = referralCode[_referralCode]; if (shill == address(0)) { bank += amount; } else{ _mint(shill, amount); emit Referred(_referralCode, shill, amount, sender); } } function addContractAddress(address _purgeGameContract) external onlyOwner{ contractAddresses[_purgeGameContract] = true; } function removeContractAddress(address _purgeGameContract) external onlyOwner{ contractAddresses[_purgeGameContract] = false; } function mintInGame(address yourAddress, uint256 _amount) external onlyPurgeGameContract{ if (yourAddress == _owner){ bank += _amount; } else{ _mint(yourAddress, _amount); } } function burnInGame(address yourAddress, uint256 _amount) external onlyPurgeGameContract{ _burn(yourAddress,_amount); } function luckyCoinBurn(uint256 amount, uint8 trait) external { require(amount > 5 * million && amount <= balanceOf(msg.sender), "Invalid amount"); require(trait >= 0 && trait <= 255, "trait ID must be between 0 and 255"); _burn(msg.sender, amount); totalCoinBurn[trait] += amount; dailyCoinBurn += amount; playerLuckbox[msg.sender] += amount; emit CoinBurned(msg.sender, trait, amount); } function airdrop(address[] calldata to, uint256[] calldata _amount) external onlyOwner { uint256 numberOfRecipients = to.length; require (numberOfRecipients == _amount.length, "Arrays must be the same length"); for (uint16 c = 0; c < numberOfRecipients;c++){ uint256 amount = _amount[c]; require(amount <= bank, "Not enough coins in the bank"); bank -= amount; _mint(to[c], amount); } } function presale(uint256 amount) external { require(amount > 5, "Amount must be greater than 5 coins"); amount *= million; uint256 totalCost = amount * percentOfDollar / 100; require(totalPresaleSold + amount <= presaleAmount, "Exceeds maximum presale amount"); require(amount <= bank, "Not enough coins in the bank"); require(presalePurchases[msg.sender] + amount <= 1000 * million, "1k max"); IERC20 usdc = IERC20(usdcTokenAddress); require(usdc.transferFrom(msg.sender, address(this), totalCost), "USDC transfer failed"); totalPresaleSold += amount; presalePurchases[msg.sender] += amount; bank -= amount; _mint(msg.sender, amount); } function setPresale(uint256 _amount, uint8 _percentOfDollar) external onlyOwner { percentOfDollar = _percentOfDollar; presaleAmount = _amount * million; } function withdrawUSDC() external onlyOwner { IERC20 usdc = IERC20(usdcTokenAddress); require(usdc.transfer(_owner, usdc.balanceOf(address(this))), "USDC transfer failed"); } function decimals() public view virtual override returns (uint8) { return 6; } event CoinBurned(address from, uint32 tokenId, uint256 amount); event Referred(string referralCode, address shill, uint256 amount, address from); event LuckboxFail(address[] players); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens 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 amount ) 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, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint32","name":"tokenId","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CoinBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"players","type":"address[]"}],"name":"LuckboxFail","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"referralCode","type":"string"},{"indexed":false,"internalType":"address","name":"shill","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"from","type":"address"}],"name":"Referred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_purgeGameContract","type":"address"}],"name":"addContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addToLuckbox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bank","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"yourAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnInGame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_referralCode","type":"string"}],"name":"createReferralCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dailyCoinBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"}],"name":"getPlayerLuckbox","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_referralCode","type":"string"}],"name":"getReferralCodeOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8[]","name":"traits","type":"uint8[]"}],"name":"getSeasonCoinBurn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"trait","type":"uint8"}],"name":"luckyCoinBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"yourAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintInGame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"_referralCode","type":"string"},{"internalType":"address","name":"sender","type":"address"}],"name":"payReferrer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"percentOfDollar","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"playerLuckbox","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalePurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_purgeGameContract","type":"address"}],"name":"removeContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetDailyCoinBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetSeasonCoinBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_percentOfDollar","type":"uint8"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPresaleSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawUSDC","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x00010000000000020007000000000002000000000801034f00000000000103550000008001000039000000400010043f00000001002001900000003e0000c13d00000060018002700000029f02100197000000040020008c000005640000413d000000000108043b000000e001100270000002a90010009c000000810000a13d000002aa0010009c000000b90000213d000002b70010009c0000012b0000a13d000002b80010009c000001cb0000a13d000002b90010009c000002c60000613d000002ba0010009c000002d30000613d000002bb0010009c000005640000c13d000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000002401800370000000000101043b000700000001001d000000ff0010008c000005640000213d0000000401800370000000000101043b000002f20010009c000005d30000413d000600000001001d0000000001000411000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b000000000101041a0000000602000029000000000012004b000006670000a13d000000400100043d000005d40000013d0000000001000416000000000001004b000005640000c13d0000000604000039000000800040043f000002a001000041000000a00010043f0000010001000039000000400010043f000000c00040043f000002a101000041000000e00010043f0000000303000039000000000103041a000000010210019000000001051002700000007f0550618f0000001f0050008c00000000010000390000000101002039000000000012004b0000005a0000613d0000030b01000041000000000010043f0000002201000039000000040010043f0000030c0100004100000a7800010430000000200050008c000000740000413d000700000005001d000000000030043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002a2011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b00000007020000290000001f0220003900000005022002700000000002210019000000000021004b00000006040000390000000303000039000000740000813d000000000001041b0000000101100039000000000021004b000000700000413d000000a00100043d000002a3011001970000000c011001bf000000000013041b000000c00600043d000002a40060009c000000ec0000413d0000030b01000041000000000010043f0000004101000039000000040010043f0000030c0100004100000a7800010430000002c30010009c000000c40000a13d000002c40010009c000001490000a13d000002c50010009c0000020e0000a13d000002c60010009c000002e10000613d000002c70010009c000002f00000613d000002c80010009c000005640000c13d000000240020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000002e40010009c000005640000213d00000004011000390a7608840000040f0000001f0420018f0000030f052001980000000006100367000000400100043d0000000003510019000000a40000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b000000a00000c13d000000000004004b000000b10000613d000000000556034f0000000304400210000000000603043300000000064601cf000000000646022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000464019f000000000043043500000000032100190000010c04000039000000000043043500000020022000390a760a570000040f000000000101041a000002db01100197000004e40000013d000002ab0010009c000001810000a13d000002ac0010009c000002310000a13d000002ad0010009c000002f50000613d000002ae0010009c0000030a0000613d000002af0010009c000002b00000613d000005640000013d000002d00010009c0000018c0000213d000002d60010009c0000024f0000213d000002d90010009c000003130000613d000002da0010009c000005640000c13d0000000001000416000000000001004b000005640000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000540000c13d000000800010043f000000000005004b000001430000613d000000000030043f000000020020008c000005e70000413d0000030e0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000000e30000413d0000061d0000013d0000000405000039000000000105041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000540000c13d000000200030008c000001180000413d000600000003001d000700000006001d000000000050043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002a2011001c700008010020000390a760a710000040f0000000100200190000005640000613d00000007060000290000001f026000390000000502200270000000200060008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000006040000390000000405000039000001180000813d000000000002041b0000000102200039000000000012004b000001140000413d0000001f0060008c000002bc0000a13d000700000006001d000000000050043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002a2011001c700008010020000390a760a710000040f0000000100200190000005640000613d00000007060000290000030f02600198000000000101043b000005700000c13d000000e0030000390000057e0000013d000002be0010009c000002740000213d000002c10010009c000003180000613d000002c20010009c000005640000c13d0000000001000416000000000001004b000005640000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000540000c13d000000800010043f000000000005004b000005e40000c13d0000031001200197000000a00010043f000000000004004b000000c001000039000000a0010060390000061e0000013d000002cb0010009c000002880000213d000002ce0010009c0000031d0000613d000002cf0010009c000005640000c13d000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000600000001001d000002db0010009c000005640000213d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c7000080100200003900070000000803530a760a710000040f000000070300035f0000000100200190000005640000613d000000000101043b0000000602000029000000000020043f000000200010043f0000002401300370000000000101043b000700000001001d00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b000000000101041a0000000702000029000000000021001a000002820000413d000000000321001900000000010004110000000602000029000006a50000013d000002b20010009c000002930000213d000002b50010009c0000035f0000613d000002b60010009c000005640000c13d0000000001000416000000000001004b000005640000c13d0000000601000039000003830000013d000002d10010009c000002a50000213d000002d40010009c0000037f0000613d000002d50010009c000005640000c13d000000640020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000700000001001d000002db0010009c000005640000213d0000002401800370000000000101043b000600000001001d000002db0010009c000005640000213d0000004401800370000000000101043b000500000001001d0000000701000029000000000010043f0000000101000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b000000000101041a000003110010009c000007530000613d000000050310006c000007500000813d000000400100043d00000044021000390000030d03000041000000000032043500000024021000390000001d03000039000005d90000013d000002bc0010009c000003870000613d000002bd0010009c000005640000c13d000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000700000001001d000002db0010009c000005640000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b0000000702000029000000000020043f000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b000000000101041a000000060310006c000006a30000813d000000400100043d0000006402100039000002f70300004100000000003204350000004402100039000002f8030000410000000000320435000000240210003900000025030000390000000000320435000002e60200004100000000002104350000000402100039000000200300003900000000003204350000029f0010009c0000029f010080410000004001100210000002f9011001c700000a7800010430000002c90010009c000003de0000613d000002ca0010009c000005640000c13d000000240020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000700000001001d000002db0010009c000005640000213d0000000501000039000000000101041a0000000801100270000002db011001970000000002000411000000000012004b000000000100003900000001010060390a7608b00000040f0000000701000029000000000010043f0000010a01000039000000200010043f000000400200003900000000010000190a760a570000040f000000000301041a0000031002300197000000000021041b000000000100001900000a770001042e000002b00010009c0000045c0000613d000002b10010009c000005640000c13d000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000002db0010009c000005640000213d0000002402800370000000000202043b000700000002001d000002db0020009c000005640000213d000000000010043f0000000101000039000000200010043f000000400200003900000000010000190a760a570000040f0000000702000029000000000020043f000000200010043f00000000010000190000004002000039000002ee0000013d000002d70010009c000004d60000613d000002d80010009c000005640000c13d000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000002db0010009c000005640000213d000000000010043f0000010d01000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c7000080100200003900070000000803530a760a710000040f000000070300035f0000000100200190000005640000613d0000002402300370000000000202043b000000000101043b000000000301041a000000000023001a000002820000413d0000000002230019000000000021041b000000000100001900000a770001042e000002bf0010009c000002b00000613d000002c00010009c000005640000c13d0000000001000416000000000001004b000005640000c13d00000000010000190000000a02100039000000000002041b000000ff0210018f0000000101200039000000ff0020008c0000027c0000c13d0000030b01000041000000000010043f0000001101000039000000040010043f0000030c0100004100000a7800010430000002cc0010009c000004eb0000613d000002cd0010009c000005640000c13d0000000001000416000000000001004b000005640000c13d0000000901000039000000000001041b000000000100001900000a770001042e000002b30010009c0000053b0000613d000002b40010009c000005640000c13d000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000002db0010009c000005640000213d0000002402800370000000000202043b0a7609f40000040f000000000100001900000a770001042e000002d20010009c0000055a0000613d000002d30010009c000005640000c13d0000000001000416000000000001004b000005640000c13d0000000601000039000000800010043f000002dc0100004100000a770001042e000000240020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000002db0010009c000005640000213d000000000010043f0000010d01000039000002d10000013d000000000006004b0000000001000019000002c00000613d000000e00100043d0000000302600210000003110220027f0000031102200167000000000221016f00000001016002100000058b0000013d000000240020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000002db0010009c000005640000213d000000000010043f0000010b01000039000000200010043f000002ec0000013d000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000201043b000002db0020009c000005640000213d0000002401800370000000000301043b00000000010004110a76092f0000040f000004e30000013d000000240020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000002db0010009c000005640000213d000000000010043f000000200000043f000000400200003900000000010000190a760a570000040f000003830000013d0000000001000416000000000001004b000005640000c13d0000000701000039000003830000013d000000240020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000000050010008c000005a10000213d000002e601000041000000800010043f0000002001000039000000840010043f0000002301000039000000a40010043f000002eb01000041000000c40010043f000002ec01000041000000e40010043f000002ed0100004100000a78000104300000000001000416000000000001004b000005640000c13d0000000501000039000000000101041a000000ff0110018f000000800010043f000002dc0100004100000a770001042e0000000001000416000000000001004b000005640000c13d0000000901000039000003830000013d0000000001000416000000000001004b000005640000c13d0000000801000039000003830000013d000000240020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000301043b000002e40030009c000005640000213d0000002301300039000000000021004b000005640000813d0000000401300039000000000118034f000000000101043b000002e40010009c000005640000213d000000240330003900000005041002100000000005340019000000000025004b000005640000213d0000003f054000390000030a05500197000003050050009c0000007b0000213d0000008005500039000000400050043f000000800010043f0000001f0540018f000000000004004b000003440000613d000000000228034f000000a004400039000000a006000039000000002702043c0000000006760436000000000046004b000003400000c13d000000000005004b000000000001004b000006dc0000c13d000000400100043d00000020020000390000000002210436000000800300043d00000000003204350000004002100039000000000003004b000003560000613d000000a0040000390000000005000019000000004604043400000000026204360000000105500039000000000035004b000003510000413d00000000021200490000029f0020009c0000029f0200804100000060022002100000029f0010009c0000029f010080410000004001100210000000000112019f00000a770001042e000000240020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000700000001001d000002db0010009c000005640000213d0000000501000039000000000101041a0000000801100270000002db011001970000000002000411000000000012004b000000000100003900000001010060390a7608b00000040f0000000701000029000000000010043f0000010a01000039000000200010043f000000400200003900000000010000190a760a570000040f000000000301041a000003100230019700000001022001bf000000000021041b000000000100001900000a770001042e0000000001000416000000000001004b000005640000c13d0000000201000039000000000101041a000000800010043f000002dc0100004100000a770001042e000000640020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000700000001001d0000002401800370000000000301043b000002e40030009c000005640000213d0000002301300039000000000021004b000005640000813d0000000401300039000000000418034f000000000404043b000600000004001d000002e40040009c000005640000213d00000006033000290000002403300039000000000023004b000005640000213d0000004402800370000000000202043b000500000002001d000002db0020009c000005640000213d00000006020000290000030f062001980000001f0720018f000200200010003d00000002028003600000008001600039000003b20000613d0000008003000039000000000402034f000000004504043c0000000003530436000000000013004b000003ae0000c13d000000000007004b000003bf0000613d000000000262034f0000000303700210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000300000007001d000400000006001d000000060300002900000080013000390000010c020000390000000000210435000002fa0030009c000002fa010000410000000001034019000000600110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000121019f000002fb0110009a00008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b000000000101041a000102db0010019c0000075f0000c13d0000000701000039000000000101041a0000000702000029000000000021001a000002820000413d0000000001210019000005cf0000013d000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000301043b000002e40030009c000005640000213d0000002301300039000000000021004b000005640000813d0000000401300039000000000118034f000000000101043b000002e40010009c000005640000213d000400240030003d00000005031002100000000403300029000000000023004b000005640000213d0000002403800370000000000303043b000002e40030009c000005640000213d0000002304300039000000000024004b000005640000813d0000000404300039000000000448034f000000000404043b000300000004001d000002e40040009c000005640000213d000200240030003d000000030300002900000005033002100000000203300029000000000023004b000005640000213d0000000502000039000000000202041a0000000802200270000002db022001970000000003000411000000000023004b000005660000c13d000000030010006c000008320000c13d000000030000006b000005d10000613d00000007040000390000000005000019000000050150021000000002031000290000000002000367000000000332034f000000000603043b000000000304041a000000000363004b000008610000413d000000000034041b0000000401100029000000000112034f000000000101043b000002db0010009c000005640000213d000002db03100198000008680000613d0000000201000039000000000101041a000000000061001a000002820000413d00000000016100190000000202000039000000000012041b000500000003001d000000000030043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c70000801002000039000600000005001d000700000006001d0a760a710000040f00000007030000290000000100200190000005640000613d000000000101043b000000000201041a000000000032001a0000000506000029000002820000413d0000000002320019000000000021041b000000400100043d00000000003104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a2011001c70000800d020000390000000303000039000002fc0400004100000000050000190a760a6c0000040f000000060100002900000007040000390000000100200190000005640000613d0000ffff0010008c000002820000613d00000001011000390000ffff0510018f000000030050006c000004140000413d000005d10000013d0000000001000416000000000001004b000005640000c13d0000000501000039000000000101041a0000000801100270000002db011001970000000002000411000000000012004b000005660000c13d000002ee01000041000000800010043f0000000001000410000000840010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ef011001c7000002e2020000410a760a710000040f000000800a00003900000060031002700000029f03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000004800000613d000000000801034f000000008908043c000000000a9a043600000000005a004b0000047c0000c13d000000000006004b0000048d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000005e90000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000005640000413d000000800200043d000002f0030000410000000705000029000000000035043500000084031001bf00000000040004110000000000430435000000a401100039000000000021043500000000010004140000029f0010009c0000029f01008041000000c0011002100000004002500210000000000121019f000002f1011001c7000002e2020000410a760a6c0000040f00000060031002700000029f03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000004b70000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000004b30000c13d000000000006004b000004c40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000006a70000613d0000001f01400039000000600110018f0000000701100029000000400010043f000000200030008c000005640000413d00000007010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000005640000c13d0a7608c40000040f000000000100001900000a770001042e000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000201043b000002db0020009c000005640000213d0000002401800370000000000301043b00000000010004110a7608d80000040f0000000101000039000000400200043d00000000001204350000029f0020009c0000029f020080410000004001200210000002f6011001c700000a770001042e000000240020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000301043b000002e40030009c000005640000213d0000002301300039000000000021004b000005640000813d0000000401300039000000000418034f000000000404043b000700000004001d000002e40040009c000005640000213d00000007033000290000002403300039000000000023004b000005640000213d00000007060000290000001f036000390000030f033001970000003f033000390000030f03300197000003050030009c0000007b0000213d0000008003300039000000400030043f000000800060043f0000030f076001980000001f0960018f000000200a1000390000000001a8034f000000a002700039000005170000613d000000a003000039000000000401034f000000004504043c0000000003530436000000000023004b000005130000c13d000000000009004b000005240000613d000000000371034f0000000304900210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a0026000390000000000020435000000400200043d000000800300043d000000210330008a000003120030009c000006f40000213d00000044012000390000030903000041000000000031043500000024012000390000001c030000390000000000310435000002e60100004100000000001204350000000401200039000000200300003900000000003104350000029f0020009c0000029f020080410000004001200210000002e1011001c700000a7800010430000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000002401800370000000000201043b000000ff0020008c000005640000213d0000000401800370000000000101043b0000000503000039000000000403041a0000000805400270000002db055001970000000006000411000000000056004b000005660000c13d0000031004400197000000000224019f000000000023041b000002dd021000d1000000000001004b000005560000613d00000000011200d9000002dd0010009c000002820000c13d0000000601000039000000000021041b000000000100001900000a770001042e000000440020008c000005640000413d0000000001000416000000000001004b000005640000c13d0000000401800370000000000101043b000700000001001d000002db0010009c000005c10000a13d000000000100001900000a7800010430000002e601000041000000800010043f0000002001000039000000840010043f0000001701000039000000a40010043f0000030201000041000000c40010043f000002e90100004100000a7800010430000000010320008a00000005033002700000000003310019000000200400003900000001033000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b000005750000c13d000000e003500039000000000062004b0000000405000039000005880000813d0000000302600210000000f80220018f000003110220027f00000311022001670000000003030433000000000223016f000000000021041b000000010100003900000001026002100000000604000039000000000112019f000000000015041b0000000501000039000000000201041a000000000004041b000002a5030000410000000704000039000000000034041b0000000803000039000000000003041b00000000030004110000000803300210000002a603300197000002a702200197000000000232019f00000064022001bf000000000021041b000000200100003900000100001004430000012000000443000002a80100004100000a770001042e000002dd031000d100000000011300d9000002dd0010009c000002820000c13d0000000501000039000000000101041a000000ff0110018f00000000043100a9000000000003004b000005ae0000613d00000000023400d9000000000021004b000002820000c13d0000000801000039000000000101041a000000000031001a000002820000413d00000000013100190000000602000039000000000202041a000000000021004b000006590000a13d000002e601000041000000800010043f0000002001000039000000840010043f0000001e01000039000000a40010043f000002ea01000041000000c40010043f000002e90100004100000a78000104300000000501000039000000000101041a00000008011002700000000703000029000000000131013f0000002402800370000000000402043b000002db00100198000006070000c13d0000000701000039000000000101041a000000000041001a000002820000413d00000000014100190000000702000039000000000012041b000000000100001900000a770001042e00000080010000390000004402100039000002f503000041000000000032043500000024021000390000000e030000390000000000320435000002e60200004100000000002104350000000402100039000000200300003900000000003204350000029f0010009c0000029f010080410000004001100210000002e1011001c700000a7800010430000000000030043f000000020020008c000006130000813d000000a0010000390000061e0000013d0000001f0530018f000002e306300198000000400200043d0000000004620019000005f40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005f00000c13d000000000005004b000006010000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000029f0020009c0000029f020080410000004002200210000000000112019f00000a7800010430000000000003004b0000062f0000c13d000002e601000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000030401000041000000c40010043f000002e90100004100000a7800010430000003010200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000006150000413d000000c001300039000000800210008a00000080010000390a76089e0000040f000000400100043d000700000001001d00000080020000390a76086f0000040f000000070200002900000000012100490000029f0010009c0000029f0100804100000060011002100000029f0020009c0000029f020080410000004002200210000000000121019f00000a770001042e0000000201000039000000000201041a000000000042001a000002820000413d000600000004001d0000000002420019000000000021041b000000000030043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b000000000201041a0000000603000029000000000032001a0000000706000029000002820000413d0000000002320019000000000021041b000000400100043d00000000003104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a2011001c70000800d020000390000000303000039000002fc0400004100000000050000190000069f0000013d0000000701000039000000000101041a000000000013004b000006b30000a13d000002e601000041000000800010043f0000002001000039000000840010043f0000001c01000039000000a40010043f000002e801000041000000c40010043f000002e90100004100000a780001043000000000010004110a7609f40000040f000000060300002900000007010000290000000a01100039000000000201041a000000000032001a000002820000413d0000000002320019000000000021041b0000000901000039000000000201041a000000000032001a000002820000413d0000000002320019000000000021041b0000000001000411000000000010043f0000010d01000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b000000000201041a0000000603000029000000000032001a000002820000413d0000000002320019000000000021041b000000400100043d00000040021000390000000000320435000000200210003900000007030000290000000000320435000000000200041100000000002104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002f3011001c70000800d020000390000000103000039000002f4040000410a760a6c0000040f0000000100200190000005640000613d000005d10000013d000000000100041100000007020000290a7608d80000040f000007570000013d0000001f0530018f000002e306300198000000400200043d0000000004620019000005f40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006ae0000c13d000005f40000013d000600000004001d000700000003001d0000000001000411000000000010043f0000010b01000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b000000000101041a0000000702000029000000000021001a0000000606000029000002820000413d0000000004210019000000400500043d000000440150003900000024025000390000000403500039000002df0040009c000007cb0000413d000002e60400004100000000004504350000002004000039000000000043043500000006030000390000000000320435000002e70200004100000000002104350000029f0050009c0000029f050080410000004001500210000002e1011001c700000a78000104300000000002000019000000000400001900000005052002100000000005350019000000000558034f000000000505043b000000ff0050008c000005640000213d000000800600043d000000000062004b0000081a0000813d0000000a05500039000000000505041a000000050440021000001fe00440018f000000a0044000390000000000540435000000ff0020008c000002820000613d0000000104200039000000ff0240018f000000000012004b000006de0000413d000003470000013d00040000000a001d0000000003720019000600000007001d000000000007004b000006ff0000613d000000000401034f0000000005020019000000004604043c0000000005650436000000000035004b000006fb0000c13d000500000009001d000000000009004b0000070e0000613d000000060110036000000005040000290000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000070300002900000000013200190000010c0400003900000000004104350000029f0020009c0000029f02008041000000400120021000000020023000390000029f0020009c000300000002001d0000029f020080410000006002200210000000000121019f00000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f00000306011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000301034f000000400100043d000000000203043b000000000202041a000002db00200198000008200000c13d000000060210002900000004030000290000000003300367000000060000006b000007360000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000007320000c13d000000050000006b000007440000613d000000060330036000000005040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000032043500000007021000290000010c03000039000000000032043500000003020000290a760a570000040f000000000201041a00000308022001970000000003000411000000000232019f000000000021041b000000000100001900000a770001042e000000070100002900000000020004110a7608d80000040f0000000701000029000000060200002900000005030000290a76092f0000040f000000400100043d000000010200003900000000002104350000029f0010009c0000029f010080410000004001100210000002f6011001c700000a770001042e0000000201000039000000000201041a0000000703000029000000000032001a000002820000413d0000000002320019000000000021041b0000000101000029000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b000000000201041a0000000703000029000000000032001a000002820000413d0000000002320019000000000021041b000000400100043d00000000003104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a2011001c70000800d020000390000000303000039000002fc04000041000000000500001900000001060000290a760a6c0000040f0000000100200190000005640000613d000000400100043d00000080021000390000000603000029000000000032043500000080020000390000000002210436000000a003100039000000040430002900000002050000290000000005500367000000040000006b0000079e0000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b0000079a0000c13d0000000506000029000002db06600197000000030000006b000007ae0000613d000000040550036000000003070000290000000307700210000000000804043300000000087801cf000000000878022f000000000505043b0000010007700089000000000575022f00000000057501cf000000000585019f000000000054043500000006050000290000000003530019000000000003043500000060031000390000000000630435000000400310003900000007040000290000000000430435000000010300002900000000003204350000001f025000390000030f022001970000006003200210000002fd0330009a000002fe0020009c000002ff030080410000029f0010009c0000029f010080410000004001100210000000000131019f00000000020004140000029f0020009c0000029f02008041000000c00220021000000000012100190000800d02000039000000010300003900000300040000410000069f0000013d000002e00400004100000000004504350000000004000411000000000043043500000000030004100000000000320435000000640260011a00000000002104350000029f0050009c0000029f010000410000000001054019000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002e1011001c7000002e202000041000600000005001d0a760a6c0000040f00000060031002700000029f03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060b0000290000000605700029000007f00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000007ec0000c13d000000000006004b000007fd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000008260000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000002e40010009c0000007b0000213d00000001002001900000007b0000c13d000000400010043f000000200030008c000005640000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000005640000c13d000000000002004b0000083c0000c13d0000004402100039000002e503000041000000000032043500000024021000390000001403000039000005d90000013d0000030b01000041000000000010043f0000003201000039000000040010043f0000030c0100004100000a780001043000000044021000390000030703000041000000000032043500000024021000390000001603000039000005d90000013d0000001f0530018f000002e306300198000000400200043d0000000004620019000005f40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000082d0000c13d000005f40000013d000002e601000041000000800010043f0000002001000039000000840010043f0000001e01000039000000a40010043f0000030301000041000000c40010043f000002e90100004100000a78000104300000000803000039000000000103041a0000000702000029000000000021001a000002820000413d0000000001210019000000000013041b0000000001000411000000000010043f0000010b01000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000005640000613d000000000101043b000000000301041a0000000702000029000000000023001a000002820000413d0000000003230019000000000031041b0000000701000039000000000101041a000000000121004b000002820000413d0000000703000039000000000013041b00000000010004110a7609aa0000040f000000000100001900000a770001042e000000400100043d0000004402100039000002e803000041000000000032043500000024021000390000001c03000039000005d90000013d000000400100043d00000044021000390000030403000041000000000032043500000024021000390000001f03000039000005d90000013d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000087e0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000008770000413d000000000321001900000000000304350000001f022000390000030f022001970000000001210019000000000001042d0000001f03100039000000000023004b0000000004000019000003130400404100000313052001970000031303300197000000000653013f000000000053004b00000000030000190000031303002041000003130060009c000000000304c019000000000003004b0000089c0000613d0000000003100367000000000303043b000002e40030009c0000089c0000213d00000020011000390000000004310019000000000024004b0000089c0000213d0000000002030019000000000001042d000000000100001900000a78000104300000001f022000390000030f022001970000000001120019000000000021004b00000000020000390000000102004039000002e40010009c000008aa0000213d0000000100200190000008aa0000c13d000000400010043f000000000001042d0000030b01000041000000000010043f0000004101000039000000040010043f0000030c0100004100000a7800010430000000000001004b000008b30000613d000000000001042d000000400100043d000000440210003900000302030000410000000000320435000000240210003900000017030000390000000000320435000002e60200004100000000002104350000000402100039000000200300003900000000003204350000029f0010009c0000029f010080410000004001100210000002e1011001c700000a7800010430000000000001004b000008c70000613d000000000001042d000000400100043d0000004402100039000002e5030000410000000000320435000000240210003900000014030000390000000000320435000002e60200004100000000002104350000000402100039000000200300003900000000003204350000029f0010009c0000029f010080410000004001100210000002e1011001c700000a78000104300003000000000002000002db01100198000009110000613d000200000003001d000302db0020019c0000091b0000613d000100000001001d000000000010043f0000000101000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f000000010020019000000003030000290000090f0000613d000000000101043b000000000030043f000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f000000030600002900000001002001900000090f0000613d000000000101043b0000000202000029000000000021041b000000400100043d00000000002104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a2011001c70000800d020000390000000303000039000003140400004100000001050000290a760a6c0000040f00000001002001900000090f0000613d000000000001042d000000000100001900000a7800010430000000400100043d00000064021000390000031703000041000000000032043500000044021000390000031803000041000000000032043500000024021000390000002403000039000009240000013d000000400100043d000000640210003900000315030000410000000000320435000000440210003900000316030000410000000000320435000000240210003900000022030000390000000000320435000002e60200004100000000002104350000000402100039000000200300003900000000003204350000029f0010009c0000029f010080410000004001100210000002f9011001c700000a78000104300004000000000002000002db011001980000097c0000613d000400000003001d000202db0020019c000009860000613d000300000001001d000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f00000001002001900000097a0000613d000000000101043b000000000101041a0001000400100074000009900000413d0000000301000029000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f00000001002001900000097a0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f00000001002001900000097a0000613d000000000101043b000000000201041a0000000403000029000000000032001a000009a40000413d0000000002320019000000000021041b000000400100043d00000000003104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a2011001c70000800d020000390000000303000039000002fc04000041000000030500002900000002060000290a760a6c0000040f00000001002001900000097a0000613d000000000001042d000000000100001900000a7800010430000000400100043d00000064021000390000031d03000041000000000032043500000044021000390000031e03000041000000000032043500000024021000390000002503000039000009990000013d000000400100043d00000064021000390000031b03000041000000000032043500000044021000390000031c03000041000000000032043500000024021000390000002303000039000009990000013d000000400100043d00000064021000390000031903000041000000000032043500000044021000390000031a030000410000000000320435000000240210003900000026030000390000000000320435000002e60200004100000000002104350000000402100039000000200300003900000000003204350000029f0010009c0000029f010080410000004001100210000002f9011001c700000a78000104300000030b01000041000000000010043f0000001101000039000000040010043f0000030c0100004100000a78000104300002000000000002000002db03100198000009dd0000613d0000000201000039000000000401041a000000000024001a000009ee0000413d000100000002001d0000000002240019000000000021041b000200000003001d000000000030043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f0000000100200190000009db0000613d000000000101043b000000000201041a0000000103000029000000000032001a0000000206000029000009ee0000413d0000000002320019000000000021041b000000400100043d00000000003104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a2011001c70000800d020000390000000303000039000002fc0400004100000000050000190a760a6c0000040f0000000100200190000009db0000613d000000000001042d000000000100001900000a7800010430000000400100043d00000044021000390000030403000041000000000032043500000024021000390000001f030000390000000000320435000002e60200004100000000002104350000000402100039000000200300003900000000003204350000029f0010009c0000029f010080410000004001100210000002e1011001c700000a78000104300000030b01000041000000000010043f0000001101000039000000040010043f0000030c0100004100000a78000104300003000000000002000300000002001d000002db0110019800000a330000613d000200000001001d000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f000000010020019000000a310000613d000000000101043b000000000101041a000100030010007400000a3d0000413d0000000201000029000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002de011001c700008010020000390a760a710000040f000000010020019000000a310000613d000000000101043b0000000102000029000000000021041b0000000201000039000000000201041a0000000303000029000000000232004b00000a510000413d000000000021041b000000400100043d00000000003104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a2011001c70000800d020000390000000303000039000002fc04000041000000020500002900000000060000190a760a6c0000040f000000010020019000000a310000613d000000000001042d000000000100001900000a7800010430000000400100043d0000006402100039000003210300004100000000003204350000004402100039000003220300004100000000003204350000002402100039000000210300003900000a460000013d000000400100043d00000064021000390000031f030000410000000000320435000000440210003900000320030000410000000000320435000000240210003900000022030000390000000000320435000002e60200004100000000002104350000000402100039000000200300003900000000003204350000029f0010009c0000029f010080410000004001100210000002f9011001c700000a78000104300000030b01000041000000000010043f0000001101000039000000040010043f0000030c0100004100000a78000104300000029f0010009c0000029f0100804100000040011002100000029f0020009c0000029f020080410000006002200210000000000112019f00000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f00000306011001c700008010020000390a760a710000040f000000010020019000000a6a0000613d000000000101043b000000000001042d000000000100001900000a780001043000000a6f002104210000000102000039000000000001042d0000000002000019000000000001042d00000a74002104230000000102000039000000000001042d0000000002000019000000000001042d00000a760000043200000a770001042e00000a780001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff507572676564000000000000000000000000000000000000000000000000000050555247454400000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff0000000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000009028836300000000000000000000000000000000000000000000000000000000b11ce2da00000000000000000000000000000000000000000000000000000000d8fc063c00000000000000000000000000000000000000000000000000000000e6ab143300000000000000000000000000000000000000000000000000000000e6ab143400000000000000000000000000000000000000000000000000000000ee19625a00000000000000000000000000000000000000000000000000000000ff3a10ab00000000000000000000000000000000000000000000000000000000d8fc063d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000cba3088000000000000000000000000000000000000000000000000000000000cba3088100000000000000000000000000000000000000000000000000000000d3fd217100000000000000000000000000000000000000000000000000000000b11ce2db00000000000000000000000000000000000000000000000000000000b138d500000000000000000000000000000000000000000000000000000000009c8550eb00000000000000000000000000000000000000000000000000000000a68574d200000000000000000000000000000000000000000000000000000000a68574d300000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000ab99b82f000000000000000000000000000000000000000000000000000000009c8550ec00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000962ccd9900000000000000000000000000000000000000000000000000000000962ccd9a000000000000000000000000000000000000000000000000000000009b800dd700000000000000000000000000000000000000000000000000000000902883640000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000037b92eb200000000000000000000000000000000000000000000000000000000672434810000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000076cdb03b0000000000000000000000000000000000000000000000000000000083a634610000000000000000000000000000000000000000000000000000000067243482000000000000000000000000000000000000000000000000000000006c797bfd000000000000000000000000000000000000000000000000000000003e0183d0000000000000000000000000000000000000000000000000000000003e0183d10000000000000000000000000000000000000000000000000000000059384b330000000000000000000000000000000000000000000000000000000037b92eb300000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000029224e350000000000000000000000000000000000000000000000000000000029224e3600000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000a9c4d4900000000000000000000000000000000000000000000000000000000048c14f10000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000000000000000000000000f42400200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000003b9aca0123b872dd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000e4c7fbb0a626ed208021ccaba6be1566905e2dfc00000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff55534443207472616e73666572206661696c656400000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000316b206d617800000000000000000000000000000000000000000000000000004e6f7420656e6f75676820636f696e7320696e207468652062616e6b00000000000000000000000000000000000000000000006400000080000000000000000045786365656473206d6178696d756d2070726573616c6520616d6f756e740000416d6f756e74206d7573742062652067726561746572207468616e203520636f696e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000070a08231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000800000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000004c4b41020000000000000000000000000000000000006000000000000000000000000046cdbaefcba5b10c473b1f147c298014bdc33290f2cf4ee881784e0d06084f67496e76616c696420616d6f756e740000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffdffdffffffffffffffffffffffffffffffffffffdfffffff800000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3effdffffffffffffffffffffffffffffffffffff6000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff6002000000000000000000000000000000ffffffff00000000000000000000000049bfc18cbb4300a975685b5eaa234b87259d2ed6827ba063ebefb0b21757bc848a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b43616c6c6572206973206e6f7420746865206f776e6572000000000000000000417272617973206d757374206265207468652073616d65206c656e677468000045524332303a206d696e7420746f20746865207a65726f206164647265737300000000000000000000000000000000000000000000000000ffffffffffffff7f0200000000000000000000000000000000000000000000000000000000000000526566657272616c20636f64652069732074616b656e00000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000496e76616c696420726566657272616c20636f6465206c656e677468000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe04e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdf80000000000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f206164647265730000000000000000000000000000000000000000000000000000000000000000a8566b1670d4b7be73e533d83bf9f2e7f65338e89087efecba3f0c6bd9c99328
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.