ERC-20
Overview
Max Total Supply
21,000,000 COFFEE
Holders
4
Market
Price
$0.00 @ 0.000000 APE
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,182.130498378027486789 COFFEEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CoffeeOnApe
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-01-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.8.3/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @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); } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.8.3/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.8.3/contracts/utils/Context.sol // 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; } } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.8.3/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.openzeppelin.com/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 `from` to `to`. * * 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 {} } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.8.3/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Coffee.sol pragma solidity ^0.8.0; // Import specific versions from OpenZeppelin v4.8.3 contract CoffeeOnApe is ERC20, Ownable { // Fixed tax percentages uint256 public constant communityTaxPercent = 1; uint256 public constant developmentTaxPercent = 1; // Community wallet address public communityWallet; // Development wallet address public developmentWallet; event WalletsUpdated(address communityWallet, address developmentWallet); // Hardcoded total supply: 21,000,000 tokens. uint256 public constant INITIAL_SUPPLY = 21_000_000 * 10 ** 18; constructor( string memory name_, string memory symbol_, address communityWallet_, address developmentWallet_ ) ERC20(name_, symbol_) { communityWallet = communityWallet_; developmentWallet = developmentWallet_; _mint(msg.sender, INITIAL_SUPPLY); } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { // Calculate fixed taxes uint256 communityTax = (amount * communityTaxPercent) / 100; uint256 developmentTax = (amount * developmentTaxPercent) / 100; uint256 totalTax = communityTax + developmentTax; uint256 amountAfterTax = amount - totalTax; // Distribute taxes if (communityTax > 0) { super._transfer(sender, communityWallet, communityTax); } if (developmentTax > 0) { super._transfer(sender, developmentWallet, developmentTax); } super._transfer(sender, recipient, amountAfterTax); } // Owner can update wallet addresses if needed function setWallets(address newCommunityWallet, address newDevelopmentWallet) external onlyOwner { communityWallet = newCommunityWallet; developmentWallet = newDevelopmentWallet; emit WalletsUpdated(newCommunityWallet, newDevelopmentWallet); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"communityWallet_","type":"address"},{"internalType":"address","name":"developmentWallet_","type":"address"}],"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":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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"communityWallet","type":"address"},{"indexed":false,"internalType":"address","name":"developmentWallet","type":"address"}],"name":"WalletsUpdated","type":"event"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"communityTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"developmentTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newCommunityWallet","type":"address"},{"internalType":"address","name":"newDevelopmentWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b506040516122a13803806122a1833981810160405281019061003191906104ea565b838381600390816100429190610793565b5080600490816100529190610793565b50505061007161006661011560201b60201c565b61011c60201b60201c565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061010c336a115eec47f6cf7e350000006101df60201b60201c565b50505050610962565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361024d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610244906108bc565b60405180910390fd5b61025e5f838361033960201b60201c565b8060025f82825461026f9190610907565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161031c9190610949565b60405180910390a36103355f838361033e60201b60201c565b5050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6103a28261035c565b810181811067ffffffffffffffff821117156103c1576103c061036c565b5b80604052505050565b5f6103d3610343565b90506103df8282610399565b919050565b5f67ffffffffffffffff8211156103fe576103fd61036c565b5b6104078261035c565b9050602081019050919050565b8281835e5f83830152505050565b5f61043461042f846103e4565b6103ca565b9050828152602081018484840111156104505761044f610358565b5b61045b848285610414565b509392505050565b5f82601f83011261047757610476610354565b5b8151610487848260208601610422565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6104b982610490565b9050919050565b6104c9816104af565b81146104d3575f80fd5b50565b5f815190506104e4816104c0565b92915050565b5f805f80608085870312156105025761050161034c565b5b5f85015167ffffffffffffffff81111561051f5761051e610350565b5b61052b87828801610463565b945050602085015167ffffffffffffffff81111561054c5761054b610350565b5b61055887828801610463565b9350506040610569878288016104d6565b925050606061057a878288016104d6565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105d457607f821691505b6020821081036105e7576105e6610590565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261060e565b610653868361060e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61069761069261068d8461066b565b610674565b61066b565b9050919050565b5f819050919050565b6106b08361067d565b6106c46106bc8261069e565b84845461061a565b825550505050565b5f90565b6106d86106cc565b6106e38184846106a7565b505050565b5b81811015610706576106fb5f826106d0565b6001810190506106e9565b5050565b601f82111561074b5761071c816105ed565b610725846105ff565b81016020851015610734578190505b610748610740856105ff565b8301826106e8565b50505b505050565b5f82821c905092915050565b5f61076b5f1984600802610750565b1980831691505092915050565b5f610783838361075c565b9150826002028217905092915050565b61079c82610586565b67ffffffffffffffff8111156107b5576107b461036c565b5b6107bf82546105bd565b6107ca82828561070a565b5f60209050601f8311600181146107fb575f84156107e9578287015190505b6107f38582610778565b86555061085a565b601f198416610809866105ed565b5f5b828110156108305784890151825560018201915060208501945060208101905061080b565b8683101561084d5784890151610849601f89168261075c565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6108a6601f83610862565b91506108b182610872565b602082019050919050565b5f6020820190508181035f8301526108d38161089a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6109118261066b565b915061091c8361066b565b9250828201905080821115610934576109336108da565b5b92915050565b6109438161066b565b82525050565b5f60208201905061095c5f83018461093a565b92915050565b6119328061096f5f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c80638da5cb5b116100ab578063c04a54141161006f578063c04a541414610348578063c757483914610366578063d3f6a15714610384578063dd62ed3e146103a0578063f2fde38b146103d05761012a565b80638da5cb5b1461028e57806395d89b41146102ac578063a457c2d7146102ca578063a9059cbb146102fa578063aea359cd1461032a5761012a565b8063313ce567116100f2578063313ce567146101e857806339509351146102065780636f446ee11461023657806370a0823114610254578063715018a6146102845761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a5780632ff2e9dc146101ca575b5f80fd5b6101366103ec565b6040516101439190611036565b60405180910390f35b610166600480360381019061016191906110e7565b61047c565b604051610173919061113f565b60405180910390f35b61018461049e565b6040516101919190611167565b60405180910390f35b6101b460048036038101906101af9190611180565b6104a7565b6040516101c1919061113f565b60405180910390f35b6101d26104d5565b6040516101df9190611167565b60405180910390f35b6101f06104e4565b6040516101fd91906111eb565b60405180910390f35b610220600480360381019061021b91906110e7565b6104ec565b60405161022d919061113f565b60405180910390f35b61023e610522565b60405161024b9190611167565b60405180910390f35b61026e60048036038101906102699190611204565b610527565b60405161027b9190611167565b60405180910390f35b61028c61056c565b005b61029661057f565b6040516102a3919061123e565b60405180910390f35b6102b46105a7565b6040516102c19190611036565b60405180910390f35b6102e460048036038101906102df91906110e7565b610637565b6040516102f1919061113f565b60405180910390f35b610314600480360381019061030f91906110e7565b6106ac565b604051610321919061113f565b60405180910390f35b6103326106ce565b60405161033f9190611167565b60405180910390f35b6103506106d3565b60405161035d919061123e565b60405180910390f35b61036e6106f8565b60405161037b919061123e565b60405180910390f35b61039e60048036038101906103999190611257565b61071d565b005b6103ba60048036038101906103b59190611257565b6107e2565b6040516103c79190611167565b60405180910390f35b6103ea60048036038101906103e59190611204565b610864565b005b6060600380546103fb906112c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610427906112c2565b80156104725780601f1061044957610100808354040283529160200191610472565b820191905f5260205f20905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b5f806104866108e6565b90506104938185856108ed565b600191505092915050565b5f600254905090565b5f806104b16108e6565b90506104be858285610ab0565b6104c9858585610b3b565b60019150509392505050565b6a115eec47f6cf7e3500000081565b5f6012905090565b5f806104f66108e6565b905061051781858561050885896107e2565b610512919061131f565b6108ed565b600191505092915050565b600181565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610574610c0f565b61057d5f610c8d565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105b6906112c2565b80601f01602080910402602001604051908101604052809291908181526020018280546105e2906112c2565b801561062d5780601f106106045761010080835404028352916020019161062d565b820191905f5260205f20905b81548152906001019060200180831161061057829003601f168201915b5050505050905090565b5f806106416108e6565b90505f61064e82866107e2565b905083811015610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a906113c2565b60405180910390fd5b6106a082868684036108ed565b60019250505092915050565b5f806106b66108e6565b90506106c3818585610b3b565b600191505092915050565b600181565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610725610c0f565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f316af92955f23ddbd4c570a5f8cda8a10b192f24d8f58524deb2fcb03a8bc79482826040516107d69291906113e0565b60405180910390a15050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61086c610c0f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611477565b60405180910390fd5b6108e381610c8d565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095290611505565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090611593565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aa39190611167565b60405180910390a3505050565b5f610abb84846107e2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b355781811015610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e906115fb565b60405180910390fd5b610b3484848484036108ed565b5b50505050565b5f6064600183610b4b9190611619565b610b559190611687565b90505f6064600184610b679190611619565b610b719190611687565b90505f8183610b80919061131f565b90505f8185610b8f91906116b7565b90505f841115610bc657610bc58760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610d50565b5b5f831115610bfb57610bfa8760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685610d50565b5b610c06878783610d50565b50505050505050565b610c176108e6565b73ffffffffffffffffffffffffffffffffffffffff16610c3561057f565b73ffffffffffffffffffffffffffffffffffffffff1614610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290611734565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db5906117c2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390611850565b60405180910390fd5b610e37838383610fbc565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906118de565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa39190611167565b60405180910390a3610fb6848484610fc1565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61100882610fc6565b6110128185610fd0565b9350611022818560208601610fe0565b61102b81610fee565b840191505092915050565b5f6020820190508181035f83015261104e8184610ffe565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110838261105a565b9050919050565b61109381611079565b811461109d575f80fd5b50565b5f813590506110ae8161108a565b92915050565b5f819050919050565b6110c6816110b4565b81146110d0575f80fd5b50565b5f813590506110e1816110bd565b92915050565b5f80604083850312156110fd576110fc611056565b5b5f61110a858286016110a0565b925050602061111b858286016110d3565b9150509250929050565b5f8115159050919050565b61113981611125565b82525050565b5f6020820190506111525f830184611130565b92915050565b611161816110b4565b82525050565b5f60208201905061117a5f830184611158565b92915050565b5f805f6060848603121561119757611196611056565b5b5f6111a4868287016110a0565b93505060206111b5868287016110a0565b92505060406111c6868287016110d3565b9150509250925092565b5f60ff82169050919050565b6111e5816111d0565b82525050565b5f6020820190506111fe5f8301846111dc565b92915050565b5f6020828403121561121957611218611056565b5b5f611226848285016110a0565b91505092915050565b61123881611079565b82525050565b5f6020820190506112515f83018461122f565b92915050565b5f806040838503121561126d5761126c611056565b5b5f61127a858286016110a0565b925050602061128b858286016110a0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112d957607f821691505b6020821081036112ec576112eb611295565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611329826110b4565b9150611334836110b4565b925082820190508082111561134c5761134b6112f2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113ac602583610fd0565b91506113b782611352565b604082019050919050565b5f6020820190508181035f8301526113d9816113a0565b9050919050565b5f6040820190506113f35f83018561122f565b611400602083018461122f565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611461602683610fd0565b915061146c82611407565b604082019050919050565b5f6020820190508181035f83015261148e81611455565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6114ef602483610fd0565b91506114fa82611495565b604082019050919050565b5f6020820190508181035f83015261151c816114e3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61157d602283610fd0565b915061158882611523565b604082019050919050565b5f6020820190508181035f8301526115aa81611571565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6115e5601d83610fd0565b91506115f0826115b1565b602082019050919050565b5f6020820190508181035f830152611612816115d9565b9050919050565b5f611623826110b4565b915061162e836110b4565b925082820261163c816110b4565b91508282048414831517611653576116526112f2565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611691826110b4565b915061169c836110b4565b9250826116ac576116ab61165a565b5b828204905092915050565b5f6116c1826110b4565b91506116cc836110b4565b92508282039050818111156116e4576116e36112f2565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61171e602083610fd0565b9150611729826116ea565b602082019050919050565b5f6020820190508181035f83015261174b81611712565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6117ac602583610fd0565b91506117b782611752565b604082019050919050565b5f6020820190508181035f8301526117d9816117a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61183a602383610fd0565b9150611845826117e0565b604082019050919050565b5f6020820190508181035f8301526118678161182e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6118c8602683610fd0565b91506118d38261186e565b604082019050919050565b5f6020820190508181035f8301526118f5816118bc565b905091905056fea26469706673582212203ae905910d63a849d9e255179358659d034d8fe8f9cbe3d4a3ab5523a0f3c00064736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000003050b2d7cd8b576227cf0acf9e5aa595d8e89cc60000000000000000000000004b41d88b0b1865ebf295966d6b7b9e2aa5aa72d4000000000000000000000000000000000000000000000000000000000000000d436f66666565204f6e20417065000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434f464645450000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061012a575f3560e01c80638da5cb5b116100ab578063c04a54141161006f578063c04a541414610348578063c757483914610366578063d3f6a15714610384578063dd62ed3e146103a0578063f2fde38b146103d05761012a565b80638da5cb5b1461028e57806395d89b41146102ac578063a457c2d7146102ca578063a9059cbb146102fa578063aea359cd1461032a5761012a565b8063313ce567116100f2578063313ce567146101e857806339509351146102065780636f446ee11461023657806370a0823114610254578063715018a6146102845761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a5780632ff2e9dc146101ca575b5f80fd5b6101366103ec565b6040516101439190611036565b60405180910390f35b610166600480360381019061016191906110e7565b61047c565b604051610173919061113f565b60405180910390f35b61018461049e565b6040516101919190611167565b60405180910390f35b6101b460048036038101906101af9190611180565b6104a7565b6040516101c1919061113f565b60405180910390f35b6101d26104d5565b6040516101df9190611167565b60405180910390f35b6101f06104e4565b6040516101fd91906111eb565b60405180910390f35b610220600480360381019061021b91906110e7565b6104ec565b60405161022d919061113f565b60405180910390f35b61023e610522565b60405161024b9190611167565b60405180910390f35b61026e60048036038101906102699190611204565b610527565b60405161027b9190611167565b60405180910390f35b61028c61056c565b005b61029661057f565b6040516102a3919061123e565b60405180910390f35b6102b46105a7565b6040516102c19190611036565b60405180910390f35b6102e460048036038101906102df91906110e7565b610637565b6040516102f1919061113f565b60405180910390f35b610314600480360381019061030f91906110e7565b6106ac565b604051610321919061113f565b60405180910390f35b6103326106ce565b60405161033f9190611167565b60405180910390f35b6103506106d3565b60405161035d919061123e565b60405180910390f35b61036e6106f8565b60405161037b919061123e565b60405180910390f35b61039e60048036038101906103999190611257565b61071d565b005b6103ba60048036038101906103b59190611257565b6107e2565b6040516103c79190611167565b60405180910390f35b6103ea60048036038101906103e59190611204565b610864565b005b6060600380546103fb906112c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610427906112c2565b80156104725780601f1061044957610100808354040283529160200191610472565b820191905f5260205f20905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b5f806104866108e6565b90506104938185856108ed565b600191505092915050565b5f600254905090565b5f806104b16108e6565b90506104be858285610ab0565b6104c9858585610b3b565b60019150509392505050565b6a115eec47f6cf7e3500000081565b5f6012905090565b5f806104f66108e6565b905061051781858561050885896107e2565b610512919061131f565b6108ed565b600191505092915050565b600181565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610574610c0f565b61057d5f610c8d565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105b6906112c2565b80601f01602080910402602001604051908101604052809291908181526020018280546105e2906112c2565b801561062d5780601f106106045761010080835404028352916020019161062d565b820191905f5260205f20905b81548152906001019060200180831161061057829003601f168201915b5050505050905090565b5f806106416108e6565b90505f61064e82866107e2565b905083811015610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a906113c2565b60405180910390fd5b6106a082868684036108ed565b60019250505092915050565b5f806106b66108e6565b90506106c3818585610b3b565b600191505092915050565b600181565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610725610c0f565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f316af92955f23ddbd4c570a5f8cda8a10b192f24d8f58524deb2fcb03a8bc79482826040516107d69291906113e0565b60405180910390a15050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61086c610c0f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611477565b60405180910390fd5b6108e381610c8d565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095290611505565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090611593565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aa39190611167565b60405180910390a3505050565b5f610abb84846107e2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b355781811015610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e906115fb565b60405180910390fd5b610b3484848484036108ed565b5b50505050565b5f6064600183610b4b9190611619565b610b559190611687565b90505f6064600184610b679190611619565b610b719190611687565b90505f8183610b80919061131f565b90505f8185610b8f91906116b7565b90505f841115610bc657610bc58760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610d50565b5b5f831115610bfb57610bfa8760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685610d50565b5b610c06878783610d50565b50505050505050565b610c176108e6565b73ffffffffffffffffffffffffffffffffffffffff16610c3561057f565b73ffffffffffffffffffffffffffffffffffffffff1614610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290611734565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db5906117c2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390611850565b60405180910390fd5b610e37838383610fbc565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906118de565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa39190611167565b60405180910390a3610fb6848484610fc1565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61100882610fc6565b6110128185610fd0565b9350611022818560208601610fe0565b61102b81610fee565b840191505092915050565b5f6020820190508181035f83015261104e8184610ffe565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110838261105a565b9050919050565b61109381611079565b811461109d575f80fd5b50565b5f813590506110ae8161108a565b92915050565b5f819050919050565b6110c6816110b4565b81146110d0575f80fd5b50565b5f813590506110e1816110bd565b92915050565b5f80604083850312156110fd576110fc611056565b5b5f61110a858286016110a0565b925050602061111b858286016110d3565b9150509250929050565b5f8115159050919050565b61113981611125565b82525050565b5f6020820190506111525f830184611130565b92915050565b611161816110b4565b82525050565b5f60208201905061117a5f830184611158565b92915050565b5f805f6060848603121561119757611196611056565b5b5f6111a4868287016110a0565b93505060206111b5868287016110a0565b92505060406111c6868287016110d3565b9150509250925092565b5f60ff82169050919050565b6111e5816111d0565b82525050565b5f6020820190506111fe5f8301846111dc565b92915050565b5f6020828403121561121957611218611056565b5b5f611226848285016110a0565b91505092915050565b61123881611079565b82525050565b5f6020820190506112515f83018461122f565b92915050565b5f806040838503121561126d5761126c611056565b5b5f61127a858286016110a0565b925050602061128b858286016110a0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112d957607f821691505b6020821081036112ec576112eb611295565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611329826110b4565b9150611334836110b4565b925082820190508082111561134c5761134b6112f2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113ac602583610fd0565b91506113b782611352565b604082019050919050565b5f6020820190508181035f8301526113d9816113a0565b9050919050565b5f6040820190506113f35f83018561122f565b611400602083018461122f565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611461602683610fd0565b915061146c82611407565b604082019050919050565b5f6020820190508181035f83015261148e81611455565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6114ef602483610fd0565b91506114fa82611495565b604082019050919050565b5f6020820190508181035f83015261151c816114e3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61157d602283610fd0565b915061158882611523565b604082019050919050565b5f6020820190508181035f8301526115aa81611571565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6115e5601d83610fd0565b91506115f0826115b1565b602082019050919050565b5f6020820190508181035f830152611612816115d9565b9050919050565b5f611623826110b4565b915061162e836110b4565b925082820261163c816110b4565b91508282048414831517611653576116526112f2565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611691826110b4565b915061169c836110b4565b9250826116ac576116ab61165a565b5b828204905092915050565b5f6116c1826110b4565b91506116cc836110b4565b92508282039050818111156116e4576116e36112f2565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61171e602083610fd0565b9150611729826116ea565b602082019050919050565b5f6020820190508181035f83015261174b81611712565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6117ac602583610fd0565b91506117b782611752565b604082019050919050565b5f6020820190508181035f8301526117d9816117a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61183a602383610fd0565b9150611845826117e0565b604082019050919050565b5f6020820190508181035f8301526118678161182e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6118c8602683610fd0565b91506118d38261186e565b604082019050919050565b5f6020820190508181035f8301526118f5816118bc565b905091905056fea26469706673582212203ae905910d63a849d9e255179358659d034d8fe8f9cbe3d4a3ab5523a0f3c00064736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000003050b2d7cd8b576227cf0acf9e5aa595d8e89cc60000000000000000000000004b41d88b0b1865ebf295966d6b7b9e2aa5aa72d4000000000000000000000000000000000000000000000000000000000000000d436f66666565204f6e20417065000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434f464645450000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Coffee On Ape
Arg [1] : symbol_ (string): COFFEE
Arg [2] : communityWallet_ (address): 0x3050B2d7Cd8B576227cF0Acf9e5aA595d8E89CC6
Arg [3] : developmentWallet_ (address): 0x4b41D88b0b1865eBF295966D6b7B9E2AA5aa72d4
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000003050b2d7cd8b576227cf0acf9e5aa595d8e89cc6
Arg [3] : 0000000000000000000000004b41d88b0b1865ebf295966d6b7b9e2aa5aa72d4
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 436f66666565204f6e2041706500000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 434f464645450000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
21007:1941:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6934:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9285:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8054:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10066:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21455:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7896:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10770:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21137:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8225:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20068:103;;;:::i;:::-;;19420:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7153:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11511:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8558:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21083:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21282:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21218:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22670:275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8814:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20326:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6934:100;6988:13;7021:5;7014:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6934:100;:::o;9285:201::-;9368:4;9385:13;9401:12;:10;:12::i;:::-;9385:28;;9424:32;9433:5;9440:7;9449:6;9424:8;:32::i;:::-;9474:4;9467:11;;;9285:201;;;;:::o;8054:108::-;8115:7;8142:12;;8135:19;;8054:108;:::o;10066:295::-;10197:4;10214:15;10232:12;:10;:12::i;:::-;10214:30;;10255:38;10271:4;10277:7;10286:6;10255:15;:38::i;:::-;10304:27;10314:4;10320:2;10324:6;10304:9;:27::i;:::-;10349:4;10342:11;;;10066:295;;;;;:::o;21455:62::-;21496:21;21455:62;:::o;7896:93::-;7954:5;7979:2;7972:9;;7896:93;:::o;10770:238::-;10858:4;10875:13;10891:12;:10;:12::i;:::-;10875:28;;10914:64;10923:5;10930:7;10967:10;10939:25;10949:5;10956:7;10939:9;:25::i;:::-;:38;;;;:::i;:::-;10914:8;:64::i;:::-;10996:4;10989:11;;;10770:238;;;;:::o;21137:49::-;21185:1;21137:49;:::o;8225:127::-;8299:7;8326:9;:18;8336:7;8326:18;;;;;;;;;;;;;;;;8319:25;;8225:127;;;:::o;20068:103::-;19306:13;:11;:13::i;:::-;20133:30:::1;20160:1;20133:18;:30::i;:::-;20068:103::o:0;19420:87::-;19466:7;19493:6;;;;;;;;;;;19486:13;;19420:87;:::o;7153:104::-;7209:13;7242:7;7235:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7153:104;:::o;11511:436::-;11604:4;11621:13;11637:12;:10;:12::i;:::-;11621:28;;11660:24;11687:25;11697:5;11704:7;11687:9;:25::i;:::-;11660:52;;11751:15;11731:16;:35;;11723:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11844:60;11853:5;11860:7;11888:15;11869:16;:34;11844:8;:60::i;:::-;11935:4;11928:11;;;;11511:436;;;;:::o;8558:193::-;8637:4;8654:13;8670:12;:10;:12::i;:::-;8654:28;;8693;8703:5;8710:2;8714:6;8693:9;:28::i;:::-;8739:4;8732:11;;;8558:193;;;;:::o;21083:47::-;21129:1;21083:47;:::o;21282:32::-;;;;;;;;;;;;;:::o;21218:30::-;;;;;;;;;;;;;:::o;22670:275::-;19306:13;:11;:13::i;:::-;22796:18:::1;22778:15;;:36;;;;;;;;;;;;;;;;;;22845:20;22825:17;;:40;;;;;;;;;;;;;;;;;;22881:56;22896:18;22916:20;22881:56;;;;;;;:::i;:::-;;;;;;;;22670:275:::0;;:::o;8814:151::-;8903:7;8930:11;:18;8942:5;8930:18;;;;;;;;;;;;;;;:27;8949:7;8930:27;;;;;;;;;;;;;;;;8923:34;;8814:151;;;;:::o;20326:201::-;19306:13;:11;:13::i;:::-;20435:1:::1;20415:22;;:8;:22;;::::0;20407:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20491:28;20510:8;20491:18;:28::i;:::-;20326:201:::0;:::o;4513:98::-;4566:7;4593:10;4586:17;;4513:98;:::o;15538:380::-;15691:1;15674:19;;:5;:19;;;15666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15772:1;15753:21;;:7;:21;;;15745:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15856:6;15826:11;:18;15838:5;15826:18;;;;;;;;;;;;;;;:27;15845:7;15826:27;;;;;;;;;;;;;;;:36;;;;15894:7;15878:32;;15887:5;15878:32;;;15903:6;15878:32;;;;;;:::i;:::-;;;;;;;;15538:380;;;:::o;16209:453::-;16344:24;16371:25;16381:5;16388:7;16371:9;:25::i;:::-;16344:52;;16431:17;16411:16;:37;16407:248;;16493:6;16473:16;:26;;16465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16577:51;16586:5;16593:7;16621:6;16602:16;:25;16577:8;:51::i;:::-;16407:248;16333:329;16209:453;;;:::o;21858:752::-;22033:20;22089:3;21129:1;22057:6;:28;;;;:::i;:::-;22056:36;;;;:::i;:::-;22033:59;;22103:22;22163:3;21185:1;22129:6;:30;;;;:::i;:::-;22128:38;;;;:::i;:::-;22103:63;;22177:16;22211:14;22196:12;:29;;;;:::i;:::-;22177:48;;22236:22;22270:8;22261:6;:17;;;;:::i;:::-;22236:42;;22339:1;22324:12;:16;22320:103;;;22357:54;22373:6;22381:15;;;;;;;;;;;22398:12;22357:15;:54::i;:::-;22320:103;22454:1;22437:14;:18;22433:109;;;22472:58;22488:6;22496:17;;;;;;;;;;;22515:14;22472:15;:58::i;:::-;22433:109;22552:50;22568:6;22576:9;22587:14;22552:15;:50::i;:::-;21988:622;;;;21858:752;;;:::o;19585:132::-;19660:12;:10;:12::i;:::-;19649:23;;:7;:5;:7::i;:::-;:23;;;19641:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19585:132::o;20687:191::-;20761:16;20780:6;;;;;;;;;;;20761:25;;20806:8;20797:6;;:17;;;;;;;;;;;;;;;;;;20861:8;20830:40;;20851:8;20830:40;;;;;;;;;;;;20750:128;20687:191;:::o;12417:840::-;12564:1;12548:18;;:4;:18;;;12540:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12641:1;12627:16;;:2;:16;;;12619:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12696:38;12717:4;12723:2;12727:6;12696:20;:38::i;:::-;12747:19;12769:9;:15;12779:4;12769:15;;;;;;;;;;;;;;;;12747:37;;12818:6;12803:11;:21;;12795:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12935:6;12921:11;:20;12903:9;:15;12913:4;12903:15;;;;;;;;;;;;;;;:38;;;;13138:6;13121:9;:13;13131:2;13121:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13188:2;13173:26;;13182:4;13173:26;;;13192:6;13173:26;;;;;;:::i;:::-;;;;;;;;13212:37;13232:4;13238:2;13242:6;13212:19;:37::i;:::-;12529:728;12417:840;;;:::o;17262:125::-;;;;:::o;17991:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:180::-;6473:77;6470:1;6463:88;6570:4;6567:1;6560:15;6594:4;6591:1;6584:15;6611:191;6651:3;6670:20;6688:1;6670:20;:::i;:::-;6665:25;;6704:20;6722:1;6704:20;:::i;:::-;6699:25;;6747:1;6744;6740:9;6733:16;;6768:3;6765:1;6762:10;6759:36;;;6775:18;;:::i;:::-;6759:36;6611:191;;;;:::o;6808:224::-;6948:34;6944:1;6936:6;6932:14;6925:58;7017:7;7012:2;7004:6;7000:15;6993:32;6808:224;:::o;7038:366::-;7180:3;7201:67;7265:2;7260:3;7201:67;:::i;:::-;7194:74;;7277:93;7366:3;7277:93;:::i;:::-;7395:2;7390:3;7386:12;7379:19;;7038:366;;;:::o;7410:419::-;7576:4;7614:2;7603:9;7599:18;7591:26;;7663:9;7657:4;7653:20;7649:1;7638:9;7634:17;7627:47;7691:131;7817:4;7691:131;:::i;:::-;7683:139;;7410:419;;;:::o;7835:332::-;7956:4;7994:2;7983:9;7979:18;7971:26;;8007:71;8075:1;8064:9;8060:17;8051:6;8007:71;:::i;:::-;8088:72;8156:2;8145:9;8141:18;8132:6;8088:72;:::i;:::-;7835:332;;;;;:::o;8173:225::-;8313:34;8309:1;8301:6;8297:14;8290:58;8382:8;8377:2;8369:6;8365:15;8358:33;8173:225;:::o;8404:366::-;8546:3;8567:67;8631:2;8626:3;8567:67;:::i;:::-;8560:74;;8643:93;8732:3;8643:93;:::i;:::-;8761:2;8756:3;8752:12;8745:19;;8404:366;;;:::o;8776:419::-;8942:4;8980:2;8969:9;8965:18;8957:26;;9029:9;9023:4;9019:20;9015:1;9004:9;9000:17;8993:47;9057:131;9183:4;9057:131;:::i;:::-;9049:139;;8776:419;;;:::o;9201:223::-;9341:34;9337:1;9329:6;9325:14;9318:58;9410:6;9405:2;9397:6;9393:15;9386:31;9201:223;:::o;9430:366::-;9572:3;9593:67;9657:2;9652:3;9593:67;:::i;:::-;9586:74;;9669:93;9758:3;9669:93;:::i;:::-;9787:2;9782:3;9778:12;9771:19;;9430:366;;;:::o;9802:419::-;9968:4;10006:2;9995:9;9991:18;9983:26;;10055:9;10049:4;10045:20;10041:1;10030:9;10026:17;10019:47;10083:131;10209:4;10083:131;:::i;:::-;10075:139;;9802:419;;;:::o;10227:221::-;10367:34;10363:1;10355:6;10351:14;10344:58;10436:4;10431:2;10423:6;10419:15;10412:29;10227:221;:::o;10454:366::-;10596:3;10617:67;10681:2;10676:3;10617:67;:::i;:::-;10610:74;;10693:93;10782:3;10693:93;:::i;:::-;10811:2;10806:3;10802:12;10795:19;;10454:366;;;:::o;10826:419::-;10992:4;11030:2;11019:9;11015:18;11007:26;;11079:9;11073:4;11069:20;11065:1;11054:9;11050:17;11043:47;11107:131;11233:4;11107:131;:::i;:::-;11099:139;;10826:419;;;:::o;11251:179::-;11391:31;11387:1;11379:6;11375:14;11368:55;11251:179;:::o;11436:366::-;11578:3;11599:67;11663:2;11658:3;11599:67;:::i;:::-;11592:74;;11675:93;11764:3;11675:93;:::i;:::-;11793:2;11788:3;11784:12;11777:19;;11436:366;;;:::o;11808:419::-;11974:4;12012:2;12001:9;11997:18;11989:26;;12061:9;12055:4;12051:20;12047:1;12036:9;12032:17;12025:47;12089:131;12215:4;12089:131;:::i;:::-;12081:139;;11808:419;;;:::o;12233:410::-;12273:7;12296:20;12314:1;12296:20;:::i;:::-;12291:25;;12330:20;12348:1;12330:20;:::i;:::-;12325:25;;12385:1;12382;12378:9;12407:30;12425:11;12407:30;:::i;:::-;12396:41;;12586:1;12577:7;12573:15;12570:1;12567:22;12547:1;12540:9;12520:83;12497:139;;12616:18;;:::i;:::-;12497:139;12281:362;12233:410;;;;:::o;12649:180::-;12697:77;12694:1;12687:88;12794:4;12791:1;12784:15;12818:4;12815:1;12808:15;12835:185;12875:1;12892:20;12910:1;12892:20;:::i;:::-;12887:25;;12926:20;12944:1;12926:20;:::i;:::-;12921:25;;12965:1;12955:35;;12970:18;;:::i;:::-;12955:35;13012:1;13009;13005:9;13000:14;;12835:185;;;;:::o;13026:194::-;13066:4;13086:20;13104:1;13086:20;:::i;:::-;13081:25;;13120:20;13138:1;13120:20;:::i;:::-;13115:25;;13164:1;13161;13157:9;13149:17;;13188:1;13182:4;13179:11;13176:37;;;13193:18;;:::i;:::-;13176:37;13026:194;;;;:::o;13226:182::-;13366:34;13362:1;13354:6;13350:14;13343:58;13226:182;:::o;13414:366::-;13556:3;13577:67;13641:2;13636:3;13577:67;:::i;:::-;13570:74;;13653:93;13742:3;13653:93;:::i;:::-;13771:2;13766:3;13762:12;13755:19;;13414:366;;;:::o;13786:419::-;13952:4;13990:2;13979:9;13975:18;13967:26;;14039:9;14033:4;14029:20;14025:1;14014:9;14010:17;14003:47;14067:131;14193:4;14067:131;:::i;:::-;14059:139;;13786:419;;;:::o;14211:224::-;14351:34;14347:1;14339:6;14335:14;14328:58;14420:7;14415:2;14407:6;14403:15;14396:32;14211:224;:::o;14441:366::-;14583:3;14604:67;14668:2;14663:3;14604:67;:::i;:::-;14597:74;;14680:93;14769:3;14680:93;:::i;:::-;14798:2;14793:3;14789:12;14782:19;;14441:366;;;:::o;14813:419::-;14979:4;15017:2;15006:9;15002:18;14994:26;;15066:9;15060:4;15056:20;15052:1;15041:9;15037:17;15030:47;15094:131;15220:4;15094:131;:::i;:::-;15086:139;;14813:419;;;:::o;15238:222::-;15378:34;15374:1;15366:6;15362:14;15355:58;15447:5;15442:2;15434:6;15430:15;15423:30;15238:222;:::o;15466:366::-;15608:3;15629:67;15693:2;15688:3;15629:67;:::i;:::-;15622:74;;15705:93;15794:3;15705:93;:::i;:::-;15823:2;15818:3;15814:12;15807:19;;15466:366;;;:::o;15838:419::-;16004:4;16042:2;16031:9;16027:18;16019:26;;16091:9;16085:4;16081:20;16077:1;16066:9;16062:17;16055:47;16119:131;16245:4;16119:131;:::i;:::-;16111:139;;15838:419;;;:::o;16263:225::-;16403:34;16399:1;16391:6;16387:14;16380:58;16472:8;16467:2;16459:6;16455:15;16448:33;16263:225;:::o;16494:366::-;16636:3;16657:67;16721:2;16716:3;16657:67;:::i;:::-;16650:74;;16733:93;16822:3;16733:93;:::i;:::-;16851:2;16846:3;16842:12;16835:19;;16494:366;;;:::o;16866:419::-;17032:4;17070:2;17059:9;17055:18;17047:26;;17119:9;17113:4;17109:20;17105:1;17094:9;17090:17;17083:47;17147:131;17273:4;17147:131;:::i;:::-;17139:139;;16866:419;;;:::o
Swarm Source
ipfs://3ae905910d63a849d9e255179358659d034d8fe8f9cbe3d4a3ab5523a0f3c000
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.