ERC-20
Overview
Max Total Supply
88.735743593807035058 MMFA
Holders
6
Total Transfers
-
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
InWrappedBPT
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-12 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.9; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.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); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /** * @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 @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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 {} } contract InWrappedBPT is ERC20 { ERC20 public bpt; uint256 public immutable RATIO = 1000; constructor( ERC20 _bpt, string memory _name, string memory _symbol ) ERC20(_name, _symbol) { bpt = _bpt; } function decimals() public view override returns (uint8) { return bpt.decimals(); } function wrapTokens(uint256 _amount) public { require(_amount >= 1e18, "minimum deposit is 1 BPT"); bpt.transferFrom( msg.sender, address(this), _amount ); _mint(msg.sender, _amount/RATIO); } function unWrapTokens(uint256 _amount) public { require(_amount*RATIO >= 1e18, "minimum withdrawal is 1 BPT"); _burn(msg.sender, _amount); bpt.transfer( msg.sender, _amount*RATIO ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ERC20","name":"_bpt","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"RATIO","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":"bpt","outputs":[{"internalType":"contract ERC20","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":[{"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":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unWrapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"wrapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526103e8608052348015610015575f5ffd5b5060405161160238038061160283398101604081905261003491610118565b81816003610042838261021e565b50600461004f828261021e565b5050600580546001600160a01b0319166001600160a01b039590951694909417909355506102d8915050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261009e575f5ffd5b81516001600160401b038111156100b7576100b761007b565b604051601f8201601f19908116603f011681016001600160401b03811182821017156100e5576100e561007b565b6040528181528382016020018510156100fc575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f6060848603121561012a575f5ffd5b83516001600160a01b0381168114610140575f5ffd5b60208501519093506001600160401b0381111561015b575f5ffd5b6101678682870161008f565b604086015190935090506001600160401b03811115610184575f5ffd5b6101908682870161008f565b9150509250925092565b600181811c908216806101ae57607f821691505b6020821081036101cc57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561021957805f5260205f20601f840160051c810160208510156101f75750805b601f840160051c820191505b81811015610216575f8155600101610203565b50505b505050565b81516001600160401b038111156102375761023761007b565b61024b81610245845461019a565b846101d2565b6020601f82116001811461027d575f83156102665750848201515b5f19600385901b1c1916600184901b178455610216565b5f84815260208120601f198516915b828110156102ac578785015182556020948501946001909201910161028c565b50848210156102c957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6080516112fd6103055f395f81816101d10152818161073c01528181610777015261083201526112fd5ff3fe608060405234801561000f575f5ffd5b50600436106100f0575f3560e01c806359e741d211610093578063a9059cbb11610063578063a9059cbb14610243578063b895696414610256578063cd5870121461026b578063dd62ed3e1461027e575f5ffd5b806359e741d2146101cc57806370a08231146101f357806395d89b4114610228578063a457c2d714610230575f5ffd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a5780633950935114610174578063546af3c314610187575f5ffd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f5ffd5b6100fc6102c3565b6040516101099190611050565b60405180910390f35b6101256101203660046110cb565b610353565b6040519015158152602001610109565b6002545b604051908152602001610109565b6101256101553660046110f3565b610369565b610162610452565b60405160ff9091168152602001610109565b6101256101823660046110cb565b6104e8565b6005546101a79073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610109565b6101397f000000000000000000000000000000000000000000000000000000000000000081565b61013961020136600461112d565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b6100fc610530565b61012561023e3660046110cb565b61053f565b6101256102513660046110cb565b610616565b61026961026436600461114d565b610622565b005b61026961027936600461114d565b610769565b61013961028c366004611164565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b6060600380546102d290611195565b80601f01602080910402602001604051908101604052809291908181526020018280546102fe90611195565b80156103495780601f1061032057610100808354040283529160200191610349565b820191905f5260205f20905b81548152906001019060200180831161032c57829003601f168201915b5050505050905090565b5f61035f3384846108ec565b5060015b92915050565b5f610375848484610a9f565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526001602090815260408083203384529091529020548281101561043a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61044785338584036108ec565b506001949350505050565b600554604080517f313ce56700000000000000000000000000000000000000000000000000000000815290515f9273ffffffffffffffffffffffffffffffffffffffff169163313ce5679160048083019260209291908290030181865afa1580156104bf573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104e391906111e6565b905090565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161035f91859061052b908690611233565b6108ec565b6060600480546102d290611195565b335f90815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156105ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610431565b61060c33858584036108ec565b5060019392505050565b5f61035f338484610a9f565b670de0b6b3a7640000811015610694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f6d696e696d756d206465706f73697420697320312042505400000000000000006044820152606401610431565b6005546040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810183905273ffffffffffffffffffffffffffffffffffffffff909116906323b872dd906064016020604051808303815f875af115801561070e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107329190611246565b50610766336107617f000000000000000000000000000000000000000000000000000000000000000084611265565b610d51565b50565b670de0b6b3a764000061079c7f00000000000000000000000000000000000000000000000000000000000000008361129d565b1015610804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6d696e696d756d207769746864726177616c20697320312042505400000000006044820152606401610431565b61080e3382610e6e565b60055473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb336108577f00000000000000000000000000000000000000000000000000000000000000008561129d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af11580156108c4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e89190611246565b5050565b73ffffffffffffffffffffffffffffffffffffffff831661098e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff8216610a31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff8216610be5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015610c9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260208190526040808220858503905591851681529081208054849290610cdd908490611233565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d4391815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610dce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610431565b8060025f828254610ddf9190611233565b909155505073ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604081208054839290610e18908490611233565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610f11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090205481811015610fc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604081208383039055600280548492906110019084906112b4565b90915550506040518281525f9073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610a92565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146110c6575f5ffd5b919050565b5f5f604083850312156110dc575f5ffd5b6110e5836110a3565b946020939093013593505050565b5f5f5f60608486031215611105575f5ffd5b61110e846110a3565b925061111c602085016110a3565b929592945050506040919091013590565b5f6020828403121561113d575f5ffd5b611146826110a3565b9392505050565b5f6020828403121561115d575f5ffd5b5035919050565b5f5f60408385031215611175575f5ffd5b61117e836110a3565b915061118c602084016110a3565b90509250929050565b600181811c908216806111a957607f821691505b6020821081036111e0577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b5f602082840312156111f6575f5ffd5b815160ff81168114611146575f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082018082111561036357610363611206565b5f60208284031215611256575f5ffd5b81518015158114611146575f5ffd5b5f82611298577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b808202811582820484141761036357610363611206565b818103818111156103635761036361120656fea2646970667358221220f9b0e1ea9f09aabc84f7307d1fb30f96a86ec2ebc1a8e2962b47ee21dca308fb64736f6c634300081c00330000000000000000000000001f0b203409233345a9d3c87a0310db58e5198bb8000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000114d656d65204d616e69612046756e64204100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4d464100000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f5ffd5b50600436106100f0575f3560e01c806359e741d211610093578063a9059cbb11610063578063a9059cbb14610243578063b895696414610256578063cd5870121461026b578063dd62ed3e1461027e575f5ffd5b806359e741d2146101cc57806370a08231146101f357806395d89b4114610228578063a457c2d714610230575f5ffd5b806323b872dd116100ce57806323b872dd14610147578063313ce5671461015a5780633950935114610174578063546af3c314610187575f5ffd5b806306fdde03146100f4578063095ea7b31461011257806318160ddd14610135575b5f5ffd5b6100fc6102c3565b6040516101099190611050565b60405180910390f35b6101256101203660046110cb565b610353565b6040519015158152602001610109565b6002545b604051908152602001610109565b6101256101553660046110f3565b610369565b610162610452565b60405160ff9091168152602001610109565b6101256101823660046110cb565b6104e8565b6005546101a79073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610109565b6101397f00000000000000000000000000000000000000000000000000000000000003e881565b61013961020136600461112d565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b6100fc610530565b61012561023e3660046110cb565b61053f565b6101256102513660046110cb565b610616565b61026961026436600461114d565b610622565b005b61026961027936600461114d565b610769565b61013961028c366004611164565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b6060600380546102d290611195565b80601f01602080910402602001604051908101604052809291908181526020018280546102fe90611195565b80156103495780601f1061032057610100808354040283529160200191610349565b820191905f5260205f20905b81548152906001019060200180831161032c57829003601f168201915b5050505050905090565b5f61035f3384846108ec565b5060015b92915050565b5f610375848484610a9f565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526001602090815260408083203384529091529020548281101561043a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61044785338584036108ec565b506001949350505050565b600554604080517f313ce56700000000000000000000000000000000000000000000000000000000815290515f9273ffffffffffffffffffffffffffffffffffffffff169163313ce5679160048083019260209291908290030181865afa1580156104bf573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104e391906111e6565b905090565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161035f91859061052b908690611233565b6108ec565b6060600480546102d290611195565b335f90815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156105ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610431565b61060c33858584036108ec565b5060019392505050565b5f61035f338484610a9f565b670de0b6b3a7640000811015610694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f6d696e696d756d206465706f73697420697320312042505400000000000000006044820152606401610431565b6005546040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810183905273ffffffffffffffffffffffffffffffffffffffff909116906323b872dd906064016020604051808303815f875af115801561070e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107329190611246565b50610766336107617f00000000000000000000000000000000000000000000000000000000000003e884611265565b610d51565b50565b670de0b6b3a764000061079c7f00000000000000000000000000000000000000000000000000000000000003e88361129d565b1015610804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f6d696e696d756d207769746864726177616c20697320312042505400000000006044820152606401610431565b61080e3382610e6e565b60055473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb336108577f00000000000000000000000000000000000000000000000000000000000003e88561129d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af11580156108c4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e89190611246565b5050565b73ffffffffffffffffffffffffffffffffffffffff831661098e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff8216610a31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff8216610be5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015610c9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260208190526040808220858503905591851681529081208054849290610cdd908490611233565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d4391815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610dce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610431565b8060025f828254610ddf9190611233565b909155505073ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604081208054839290610e18908490611233565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610f11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090205481811015610fc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610431565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604081208383039055600280548492906110019084906112b4565b90915550506040518281525f9073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610a92565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146110c6575f5ffd5b919050565b5f5f604083850312156110dc575f5ffd5b6110e5836110a3565b946020939093013593505050565b5f5f5f60608486031215611105575f5ffd5b61110e846110a3565b925061111c602085016110a3565b929592945050506040919091013590565b5f6020828403121561113d575f5ffd5b611146826110a3565b9392505050565b5f6020828403121561115d575f5ffd5b5035919050565b5f5f60408385031215611175575f5ffd5b61117e836110a3565b915061118c602084016110a3565b90509250929050565b600181811c908216806111a957607f821691505b6020821081036111e0577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b5f602082840312156111f6575f5ffd5b815160ff81168114611146575f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082018082111561036357610363611206565b5f60208284031215611256575f5ffd5b81518015158114611146575f5ffd5b5f82611298577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b808202811582820484141761036357610363611206565b818103818111156103635761036361120656fea2646970667358221220f9b0e1ea9f09aabc84f7307d1fb30f96a86ec2ebc1a8e2962b47ee21dca308fb64736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001f0b203409233345a9d3c87a0310db58e5198bb8000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000114d656d65204d616e69612046756e64204100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4d464100000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _bpt (address): 0x1f0B203409233345A9d3c87a0310DB58e5198bb8
Arg [1] : _name (string): Meme Mania Fund A
Arg [2] : _symbol (string): MMFA
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000001f0b203409233345a9d3c87a0310db58e5198bb8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 4d656d65204d616e69612046756e642041000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d4d464100000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
16539:906:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6578:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8745:169;;;;;;:::i;:::-;;:::i;:::-;;;1167:14:1;;1160:22;1142:41;;1130:2;1115:18;8745:169:0;1002:187:1;7698:108:0;7786:12;;7698:108;;;1340:25:1;;;1328:2;1313:18;7698:108:0;1194:177:1;9396:492:0;;;;;;:::i;:::-;;:::i;16807:97::-;;;:::i;:::-;;;1927:4:1;1915:17;;;1897:36;;1885:2;1870:18;16807:97:0;1755:184:1;10297:215:0;;;;;;:::i;:::-;;:::i;16577:16::-;;;;;;;;;;;;2133:42:1;2121:55;;;2103:74;;2091:2;2076:18;16577:16:0;1944:239:1;16600:37:0;;;;;7869:127;;;;;;:::i;:::-;7970:18;;7943:7;7970:18;;;;;;;;;;;;7869:127;6797:104;;;:::i;11015:413::-;;;;;;:::i;:::-;;:::i;8209:175::-;;;;;;:::i;:::-;;:::i;16912:271::-;;;;;;:::i;:::-;;:::i;:::-;;17192:250;;;;;;:::i;:::-;;:::i;8447:151::-;;;;;;:::i;:::-;8563:18;;;;8536:7;8563:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8447:151;6578:100;6632:13;6665:5;6658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6578:100;:::o;8745:169::-;8828:4;8845:39;4330:10;8868:7;8877:6;8845:8;:39::i;:::-;-1:-1:-1;8902:4:0;8745:169;;;;;:::o;9396:492::-;9536:4;9553:36;9563:6;9571:9;9582:6;9553:9;:36::i;:::-;9629:19;;;9602:24;9629:19;;;:11;:19;;;;;;;;4330:10;9629:33;;;;;;;;9681:26;;;;9673:79;;;;;;;3519:2:1;9673:79:0;;;3501:21:1;3558:2;3538:18;;;3531:30;3597:34;3577:18;;;3570:62;3668:10;3648:18;;;3641:38;3696:19;;9673:79:0;;;;;;;;;9788:57;9797:6;4330:10;9838:6;9819:16;:25;9788:8;:57::i;:::-;-1:-1:-1;9876:4:0;;9396:492;-1:-1:-1;;;;9396:492:0:o;16807:97::-;16882:3;;:14;;;;;;;;16857:5;;16882:3;;;:12;;:14;;;;;;;;;;;;;;:3;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16875:21;;16807:97;:::o;10297:215::-;4330:10;10385:4;10434:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;10385:4;;10402:80;;10425:7;;10434:47;;10471:10;;10434:47;:::i;:::-;10402:8;:80::i;6797:104::-;6853:13;6886:7;6879:14;;;;;:::i;11015:413::-;4330:10;11108:4;11152:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;11205:35;;;;11197:85;;;;;;;4525:2:1;11197:85:0;;;4507:21:1;4564:2;4544:18;;;4537:30;4603:34;4583:18;;;4576:62;4674:7;4654:18;;;4647:35;4699:19;;11197:85:0;4323:401:1;11197:85:0;11318:67;4330:10;11341:7;11369:15;11350:16;:34;11318:8;:67::i;:::-;-1:-1:-1;11416:4:0;;11015:413;-1:-1:-1;;;11015:413:0:o;8209:175::-;8295:4;8312:42;4330:10;8336:9;8347:6;8312:9;:42::i;16912:271::-;16986:4;16975:7;:15;;16967:52;;;;;;;4931:2:1;16967:52:0;;;4913:21:1;4970:2;4950:18;;;4943:30;5009:26;4989:18;;;4982:54;5053:18;;16967:52:0;4729:348:1;16967:52:0;17030:3;;:102;;;;;17061:10;17030:102;;;5284:74:1;17094:4:0;5374:18:1;;;5367:83;5466:18;;;5459:34;;;17030:3:0;;;;;:16;;5257:18:1;;17030:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;17143:32:0;17149:10;17161:13;17169:5;17161:7;:13;:::i;:::-;17143:5;:32::i;:::-;16912:271;:::o;17192:250::-;17274:4;17257:13;17265:5;17257:7;:13;:::i;:::-;:21;;17249:61;;;;;;;6440:2:1;17249:61:0;;;6422:21:1;6479:2;6459:18;;;6452:30;6518:29;6498:18;;;6491:57;6565:18;;17249:61:0;6238:351:1;17249:61:0;17321:26;17327:10;17339:7;17321:5;:26::i;:::-;17358:3;;;;:12;17385:10;17410:13;17418:5;17410:7;:13;:::i;:::-;17358:76;;;;;;;;;;6798:42:1;6786:55;;;17358:76:0;;;6768:74:1;6858:18;;;6851:34;6741:18;;17358:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17192:250;:::o;14699:380::-;14835:19;;;14827:68;;;;;;;7098:2:1;14827:68:0;;;7080:21:1;7137:2;7117:18;;;7110:30;7176:34;7156:18;;;7149:62;7247:6;7227:18;;;7220:34;7271:19;;14827:68:0;6896:400:1;14827:68:0;14914:21;;;14906:68;;;;;;;7503:2:1;14906:68:0;;;7485:21:1;7542:2;7522:18;;;7515:30;7581:34;7561:18;;;7554:62;7652:4;7632:18;;;7625:32;7674:19;;14906:68:0;7301:398:1;14906:68:0;14987:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15039:32;;1340:25:1;;;15039:32:0;;1313:18:1;15039:32:0;;;;;;;;14699:380;;;:::o;11918:733::-;12058:20;;;12050:70;;;;;;;7906:2:1;12050:70:0;;;7888:21:1;7945:2;7925:18;;;7918:30;7984:34;7964:18;;;7957:62;8055:7;8035:18;;;8028:35;8080:19;;12050:70:0;7704:401:1;12050:70:0;12139:23;;;12131:71;;;;;;;8312:2:1;12131:71:0;;;8294:21:1;8351:2;8331:18;;;8324:30;8390:34;8370:18;;;8363:62;8461:5;8441:18;;;8434:33;8484:19;;12131:71:0;8110:399:1;12131:71:0;12299:17;;;12275:21;12299:17;;;;;;;;;;;12335:23;;;;12327:74;;;;;;;8716:2:1;12327:74:0;;;8698:21:1;8755:2;8735:18;;;8728:30;8794:34;8774:18;;;8767:62;8865:8;8845:18;;;8838:36;8891:19;;12327:74:0;8514:402:1;12327:74:0;12437:17;;;;:9;:17;;;;;;;;;;;12457:22;;;12437:42;;12501:20;;;;;;;;:30;;12473:6;;12437:9;12501:30;;12473:6;;12501:30;:::i;:::-;;;;;;;;12566:9;12549:35;;12558:6;12549:35;;;12577:6;12549:35;;;;1340:25:1;;1328:2;1313:18;;1194:177;12549:35:0;;;;;;;;12039:612;11918:733;;;:::o;12938:399::-;13022:21;;;13014:65;;;;;;;9123:2:1;13014:65:0;;;9105:21:1;9162:2;9142:18;;;9135:30;9201:33;9181:18;;;9174:61;9252:18;;13014:65:0;8921:355:1;13014:65:0;13170:6;13154:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;13187:18:0;;;:9;:18;;;;;;;;;;:28;;13209:6;;13187:9;:28;;13209:6;;13187:28;:::i;:::-;;;;-1:-1:-1;;13231:37:0;;1340:25:1;;;13231:37:0;;;;13248:1;;13231:37;;1328:2:1;1313:18;13231:37:0;;;;;;;17358:76;17192:250;:::o;13670:591::-;13754:21;;;13746:67;;;;;;;9483:2:1;13746:67:0;;;9465:21:1;9522:2;9502:18;;;9495:30;9561:34;9541:18;;;9534:62;9632:3;9612:18;;;9605:31;9653:19;;13746:67:0;9281:397:1;13746:67:0;13913:18;;;13888:22;13913:18;;;;;;;;;;;13950:24;;;;13942:71;;;;;;;9885:2:1;13942:71:0;;;9867:21:1;9924:2;9904:18;;;9897:30;9963:34;9943:18;;;9936:62;10034:4;10014:18;;;10007:32;10056:19;;13942:71:0;9683:398:1;13942:71:0;14049:18;;;:9;:18;;;;;;;;;;14070:23;;;14049:44;;14115:12;:22;;14087:6;;14049:9;14115:22;;14087:6;;14115:22;:::i;:::-;;;;-1:-1:-1;;14155:37:0;;1340:25:1;;;14181:1:0;;14155:37;;;;;;1328:2:1;1313:18;14155:37:0;1194:177:1;14:477;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;482:2;412:66;407:2;399:6;395:15;391:88;380:9;376:104;372:113;364:121;;;14:477;;;;:::o;496:196::-;564:20;;624:42;613:54;;603:65;;593:93;;682:1;679;672:12;593:93;496:196;;;:::o;697:300::-;765:6;773;826:2;814:9;805:7;801:23;797:32;794:52;;;842:1;839;832:12;794:52;865:29;884:9;865:29;:::i;:::-;855:39;963:2;948:18;;;;935:32;;-1:-1:-1;;;697:300:1:o;1376:374::-;1453:6;1461;1469;1522:2;1510:9;1501:7;1497:23;1493:32;1490:52;;;1538:1;1535;1528:12;1490:52;1561:29;1580:9;1561:29;:::i;:::-;1551:39;;1609:38;1643:2;1632:9;1628:18;1609:38;:::i;:::-;1376:374;;1599:48;;-1:-1:-1;;;1716:2:1;1701:18;;;;1688:32;;1376:374::o;2188:186::-;2247:6;2300:2;2288:9;2279:7;2275:23;2271:32;2268:52;;;2316:1;2313;2306:12;2268:52;2339:29;2358:9;2339:29;:::i;:::-;2329:39;2188:186;-1:-1:-1;;;2188:186:1:o;2379:226::-;2438:6;2491:2;2479:9;2470:7;2466:23;2462:32;2459:52;;;2507:1;2504;2497:12;2459:52;-1:-1:-1;2552:23:1;;2379:226;-1:-1:-1;2379:226:1:o;2610:260::-;2678:6;2686;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;:::-;2768:39;;2826:38;2860:2;2849:9;2845:18;2826:38;:::i;:::-;2816:48;;2610:260;;;;;:::o;2875:437::-;2954:1;2950:12;;;;2997;;;3018:61;;3072:4;3064:6;3060:17;3050:27;;3018:61;3125:2;3117:6;3114:14;3094:18;3091:38;3088:218;;3162:77;3159:1;3152:88;3263:4;3260:1;3253:15;3291:4;3288:1;3281:15;3088:218;;2875:437;;;:::o;3726:273::-;3794:6;3847:2;3835:9;3826:7;3822:23;3818:32;3815:52;;;3863:1;3860;3853:12;3815:52;3895:9;3889:16;3945:4;3938:5;3934:16;3927:5;3924:27;3914:55;;3965:1;3962;3955:12;4004:184;4056:77;4053:1;4046:88;4153:4;4150:1;4143:15;4177:4;4174:1;4167:15;4193:125;4258:9;;;4279:10;;;4276:36;;;4292:18;;:::i;5504:277::-;5571:6;5624:2;5612:9;5603:7;5599:23;5595:32;5592:52;;;5640:1;5637;5630:12;5592:52;5672:9;5666:16;5725:5;5718:13;5711:21;5704:5;5701:32;5691:60;;5747:1;5744;5737:12;5786:274;5826:1;5852;5842:189;;5887:77;5884:1;5877:88;5988:4;5985:1;5978:15;6016:4;6013:1;6006:15;5842:189;-1:-1:-1;6045:9:1;;5786:274::o;6065:168::-;6138:9;;;6169;;6186:15;;;6180:22;;6166:37;6156:71;;6207:18;;:::i;10086:128::-;10153:9;;;10174:11;;;10171:37;;;10188:18;;:::i
Swarm Source
ipfs://f9b0e1ea9f09aabc84f7307d1fb30f96a86ec2ebc1a8e2962b47ee21dca308fb
[ 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.