Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
690,000,000,000 SOCRATES
Holders
484
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
128,333,764.129291028782928424 SOCRATESValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SOCRATES
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SOCRATES // https://t.me/Socratestoken // https://twitter.com/SOCRATESTOKEN // http://www.socratescoin.org // Sources flattened with hardhat v2.7.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.4; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.4; /** * @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`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.4; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.4; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { 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); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File contracts/SOCRATES.sol pragma solidity ^0.8.4; contract SOCRATES is Ownable, ERC20 { uint256 public maxWallet; address public uniswapV2Pair; IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 SUPPLY = 690000000000 * 10**18; //Fees are out of 1000 uint256 firstBlockFee = 200; // 20% uint256 tempFee = 100; // 10% bool private inSwap = false; address public marketingWallet; uint256 public openTradingBlock; mapping (address => uint256) public receiveBlock; uint256 public swapAt = SUPPLY / 1000; //0.1% constructor() ERC20("SOCRATES", "SOCRATES") payable { _mint(msg.sender, SUPPLY * 10 / 100); _mint(address(this), SUPPLY * 90 / 100); maxWallet = SUPPLY * 1 / 100; marketingWallet = owner(); } receive() external payable {} function removeTempFee() external onlyOwner { tempFee = 0; } function removeMaxHoldingAmount() external onlyOwner { maxWallet = SUPPLY; } function updateSwapAt(uint256 value) external onlyOwner() { require(value <= SUPPLY / 50); swapAt = value; } function openTrading() external onlyOwner { address pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); _approve(address(this), address(router), balanceOf(address(this))); router.addLiquidityETH{ value: address(this).balance } ( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); uniswapV2Pair = pair; openTradingBlock = block.number; } function _transfer(address from, address to, uint256 amount) internal override { if(uniswapV2Pair == address(0)) { require(from == address(this) || from == address(0) || from == owner() || to == owner(), "Not started"); super._transfer(from, to, amount); return; } if(from == uniswapV2Pair && to != address(this) && to != owner() && to != address(router)) { require(super.balanceOf(to) + amount <= maxWallet, "max wallet"); } uint256 swapAmount = balanceOf(address(this)); if(swapAmount > swapAt) { swapAmount = swapAt; } if( swapAt > 0 && swapAmount == swapAt && !inSwap && from != uniswapV2Pair) { inSwap = true; swapTokensForEth(swapAmount); uint256 balance = address(this).balance; if(balance > 0) { withdraw(balance); } inSwap = false; } uint256 fee; if(block.number < openTradingBlock + 1) { fee = firstBlockFee; } else if(tempFee > 0) { fee = tempFee; } if( fee > 0 && from != address(this) && from != owner() && from != address(router) ) { uint256 feeTokens = amount * fee / 1000; amount -= feeTokens; super._transfer(from, address(this), feeTokens); } // super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function withdraw(uint256 amount) private { (bool success,) = marketingWallet.call{value: amount}(""); success; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"receiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeMaxHoldingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTempFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"updateSwapAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b8152506c08b5829f66bff9a4295000000060085560c86009556064600a556000600b60006101000a81548160ff0219169083151502179055506103e860085462000096919062000642565b600e556040518060400160405280600881526020017f534f4352415445530000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f534f43524154455300000000000000000000000000000000000000000000000081525062000125620001196200023460201b60201c565b6200023c60201b60201c565b81600490805190602001906200013d929190620004ad565b50806005908051906020019062000156929190620004ad565b50505062000189336064600a6008546200017191906200067a565b6200017d919062000642565b6200030060201b60201c565b620001b9306064605a600854620001a191906200067a565b620001ad919062000642565b6200030060201b60201c565b60646001600854620001cc91906200067a565b620001d8919062000642565b600681905550620001ee6200047a60201b60201c565b600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620007d1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000373576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036a9062000595565b60405180910390fd5b6200038760008383620004a360201b60201c565b80600360008282546200039b9190620005e5565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003f39190620005e5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200045a9190620005b7565b60405180910390a36200047660008383620004a860201b60201c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b828054620004bb90620006e5565b90600052602060002090601f016020900481019282620004df57600085556200052b565b82601f10620004fa57805160ff19168380011785556200052b565b828001600101855582156200052b579182015b828111156200052a5782518255916020019190600101906200050d565b5b5090506200053a91906200053e565b5090565b5b80821115620005595760008160009055506001016200053f565b5090565b60006200056c601f83620005d4565b91506200057982620007a8565b602082019050919050565b6200058f81620006db565b82525050565b60006020820190508181036000830152620005b0816200055d565b9050919050565b6000602082019050620005ce600083018462000584565b92915050565b600082825260208201905092915050565b6000620005f282620006db565b9150620005ff83620006db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200063757620006366200071b565b5b828201905092915050565b60006200064f82620006db565b91506200065c83620006db565b9250826200066f576200066e6200074a565b5b828204905092915050565b60006200068782620006db565b91506200069483620006db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006d057620006cf6200071b565b5b828202905092915050565b6000819050919050565b60006002820490506001821680620006fe57607f821691505b6020821081141562000715576200071462000779565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60805160601c612b916200082860003960008181610c7f01528181610d3901528181610e4c01528181610e7b015281816114ca0152818161173001528181611c0201528181611d180152611d3f0152612b916000f3fe6080604052600436106101445760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d71461045b578063a9059cbb14610498578063c9567bf9146104d5578063dd62ed3e146104ec578063e639a5d514610529578063f8b45b05146105405761014b565b806370a082311461036f578063715018a6146103ac57806375f0a874146103c35780638da5cb5b146103ee578063909278811461041957806395d89b41146104305761014b565b806323b872dd1161010857806323b872dd1461024b578063313ce5671461028857806339509351146102b357806349bd5a5e146102f057806362e9ddd41461031b5780636abfe846146103465761014b565b806306fdde031461015057806308aa26951461017b578063095ea7b3146101a6578063098fec39146101e357806318160ddd146102205761014b565b3661014b57005b600080fd5b34801561015c57600080fd5b5061016561056b565b60405161017291906123b5565b60405180910390f35b34801561018757600080fd5b506101906105fd565b60405161019d9190612517565b60405180910390f35b3480156101b257600080fd5b506101cd60048036038101906101c89190611fa2565b610603565b6040516101da919061239a565b60405180910390f35b3480156101ef57600080fd5b5061020a60048036038101906102059190611ec5565b610621565b6040516102179190612517565b60405180910390f35b34801561022c57600080fd5b50610235610639565b6040516102429190612517565b60405180910390f35b34801561025757600080fd5b50610272600480360381019061026d9190611f53565b610643565b60405161027f919061239a565b60405180910390f35b34801561029457600080fd5b5061029d61073b565b6040516102aa919061258c565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190611fa2565b610744565b6040516102e7919061239a565b60405180910390f35b3480156102fc57600080fd5b506103056107f0565b60405161031291906122f5565b60405180910390f35b34801561032757600080fd5b50610330610816565b60405161033d9190612517565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190611fde565b61081c565b005b34801561037b57600080fd5b5061039660048036038101906103919190611ec5565b6108bd565b6040516103a39190612517565b60405180910390f35b3480156103b857600080fd5b506103c1610906565b005b3480156103cf57600080fd5b506103d861098e565b6040516103e591906122f5565b60405180910390f35b3480156103fa57600080fd5b506104036109b4565b60405161041091906122f5565b60405180910390f35b34801561042557600080fd5b5061042e6109dd565b005b34801561043c57600080fd5b50610445610a64565b60405161045291906123b5565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190611fa2565b610af6565b60405161048f919061239a565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190611fa2565b610be1565b6040516104cc919061239a565b60405180910390f35b3480156104e157600080fd5b506104ea610bff565b005b3480156104f857600080fd5b50610513600480360381019061050e9190611f17565b610f8d565b6040516105209190612517565b60405180910390f35b34801561053557600080fd5b5061053e611014565b005b34801561054c57600080fd5b5061055561109a565b6040516105629190612517565b60405180910390f35b60606004805461057a906127b6565b80601f01602080910402602001604051908101604052809291908181526020018280546105a6906127b6565b80156105f35780601f106105c8576101008083540402835291602001916105f3565b820191906000526020600020905b8154815290600101906020018083116105d657829003601f168201915b5050505050905090565b600e5481565b60006106176106106110a0565b84846110a8565b6001905092915050565b600d6020528060005260406000206000915090505481565b6000600354905090565b6000610650848484611273565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061069b6110a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290612457565b60405180910390fd5b61072f856107276110a0565b8584036110a8565b60019150509392505050565b60006012905090565b60006107e66107516110a0565b84846002600061075f6110a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107e19190612607565b6110a8565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6108246110a0565b73ffffffffffffffffffffffffffffffffffffffff166108426109b4565b73ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90612477565b60405180910390fd5b60326008546108a7919061265d565b8111156108b357600080fd5b80600e8190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61090e6110a0565b73ffffffffffffffffffffffffffffffffffffffff1661092c6109b4565b73ffffffffffffffffffffffffffffffffffffffff1614610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097990612477565b60405180910390fd5b61098c60006117cf565b565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109e56110a0565b73ffffffffffffffffffffffffffffffffffffffff16610a036109b4565b73ffffffffffffffffffffffffffffffffffffffff1614610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090612477565b60405180910390fd5b600854600681905550565b606060058054610a73906127b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9f906127b6565b8015610aec5780601f10610ac157610100808354040283529160200191610aec565b820191906000526020600020905b815481529060010190602001808311610acf57829003601f168201915b5050505050905090565b60008060026000610b056110a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb9906124d7565b60405180910390fd5b610bd6610bcd6110a0565b858584036110a8565b600191505092915050565b6000610bf5610bee6110a0565b8484611273565b6001905092915050565b610c076110a0565b73ffffffffffffffffffffffffffffffffffffffff16610c256109b4565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290612477565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610ce357600080fd5b505afa158015610cf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1b9190611eee565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610d9d57600080fd5b505afa158015610db1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd59190611eee565b6040518363ffffffff1660e01b8152600401610df2929190612310565b602060405180830381600087803b158015610e0c57600080fd5b505af1158015610e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e449190611eee565b9050610e79307f0000000000000000000000000000000000000000000000000000000000000000610e74306108bd565b6110a8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610ec0306108bd565b600080610ecb6109b4565b426040518863ffffffff1660e01b8152600401610eed96959493929190612339565b6060604051808303818588803b158015610f0657600080fd5b505af1158015610f1a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f3f9190612007565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555043600c8190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61101c6110a0565b73ffffffffffffffffffffffffffffffffffffffff1661103a6109b4565b73ffffffffffffffffffffffffffffffffffffffff1614611090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108790612477565b60405180910390fd5b6000600a81905550565b60065481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906124b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90612417565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112669190612517565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113f9573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113305750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061136d575061133e6109b4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806113aa575061137b6109b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e0906123f7565b60405180910390fd5b6113f4838383611893565b6117ca565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561148257503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114c157506114916109b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561151957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611577576006548161152b846108bd565b6115359190612607565b1115611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d906124f7565b60405180910390fd5b5b6000611582306108bd565b9050600e5481111561159457600e5490505b6000600e541180156115a75750600e5481145b80156115c05750600b60009054906101000a900460ff16155b801561161a5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611678576001600b60006101000a81548160ff02191690831515021790555061164381611b17565b6000479050600081111561165b5761165a81611dd5565b5b6000600b60006101000a81548160ff021916908315150217905550505b60006001600c546116899190612607565b43101561169a5760095490506116ac565b6000600a5411156116ab57600a5490505b5b6000811180156116e857503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561172757506116f76109b4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561177f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156117bc5760006103e88285611795919061268e565b61179f919061265d565b905080846117ad91906126e8565b93506117ba863083611893565b505b6117c7858585611893565b50505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90612497565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a906123d7565b60405180910390fd5b61197e838383611e67565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90612437565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a9a9190612607565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611afe9190612517565b60405180910390a3611b11848484611e6c565b50505050565b6000600267ffffffffffffffff811115611b5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611b885781602001602082028036833780820191505090505b5090503081600081518110611bc6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611c6657600080fd5b505afa158015611c7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9e9190611eee565b81600181518110611cd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611d3d307f0000000000000000000000000000000000000000000000000000000000000000846110a8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611d9f959493929190612532565b600060405180830381600087803b158015611db957600080fd5b505af1158015611dcd573d6000803e3d6000fd5b505050505050565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611e1d906122e0565b60006040518083038185875af1925050503d8060008114611e5a576040519150601f19603f3d011682016040523d82523d6000602084013e611e5f565b606091505b505090505050565b505050565b505050565b600081359050611e8081612b2d565b92915050565b600081519050611e9581612b2d565b92915050565b600081359050611eaa81612b44565b92915050565b600081519050611ebf81612b44565b92915050565b600060208284031215611ed757600080fd5b6000611ee584828501611e71565b91505092915050565b600060208284031215611f0057600080fd5b6000611f0e84828501611e86565b91505092915050565b60008060408385031215611f2a57600080fd5b6000611f3885828601611e71565b9250506020611f4985828601611e71565b9150509250929050565b600080600060608486031215611f6857600080fd5b6000611f7686828701611e71565b9350506020611f8786828701611e71565b9250506040611f9886828701611e9b565b9150509250925092565b60008060408385031215611fb557600080fd5b6000611fc385828601611e71565b9250506020611fd485828601611e9b565b9150509250929050565b600060208284031215611ff057600080fd5b6000611ffe84828501611e9b565b91505092915050565b60008060006060848603121561201c57600080fd5b600061202a86828701611eb0565b935050602061203b86828701611eb0565b925050604061204c86828701611eb0565b9150509250925092565b6000612062838361206e565b60208301905092915050565b6120778161271c565b82525050565b6120868161271c565b82525050565b6000612097826125b7565b6120a181856125da565b93506120ac836125a7565b8060005b838110156120dd5781516120c48882612056565b97506120cf836125cd565b9250506001810190506120b0565b5085935050505092915050565b6120f38161272e565b82525050565b61210281612771565b82525050565b6000612113826125c2565b61211d81856125f6565b935061212d818560208601612783565b61213681612875565b840191505092915050565b600061214e6023836125f6565b915061215982612886565b604082019050919050565b6000612171600b836125f6565b915061217c826128d5565b602082019050919050565b60006121946022836125f6565b915061219f826128fe565b604082019050919050565b60006121b76026836125f6565b91506121c28261294d565b604082019050919050565b60006121da6028836125f6565b91506121e58261299c565b604082019050919050565b60006121fd6020836125f6565b9150612208826129eb565b602082019050919050565b60006122206025836125f6565b915061222b82612a14565b604082019050919050565b60006122436000836125eb565b915061224e82612a63565b600082019050919050565b60006122666024836125f6565b915061227182612a66565b604082019050919050565b60006122896025836125f6565b915061229482612ab5565b604082019050919050565b60006122ac600a836125f6565b91506122b782612b04565b602082019050919050565b6122cb8161275a565b82525050565b6122da81612764565b82525050565b60006122eb82612236565b9150819050919050565b600060208201905061230a600083018461207d565b92915050565b6000604082019050612325600083018561207d565b612332602083018461207d565b9392505050565b600060c08201905061234e600083018961207d565b61235b60208301886122c2565b61236860408301876120f9565b61237560608301866120f9565b612382608083018561207d565b61238f60a08301846122c2565b979650505050505050565b60006020820190506123af60008301846120ea565b92915050565b600060208201905081810360008301526123cf8184612108565b905092915050565b600060208201905081810360008301526123f081612141565b9050919050565b6000602082019050818103600083015261241081612164565b9050919050565b6000602082019050818103600083015261243081612187565b9050919050565b60006020820190508181036000830152612450816121aa565b9050919050565b60006020820190508181036000830152612470816121cd565b9050919050565b60006020820190508181036000830152612490816121f0565b9050919050565b600060208201905081810360008301526124b081612213565b9050919050565b600060208201905081810360008301526124d081612259565b9050919050565b600060208201905081810360008301526124f08161227c565b9050919050565b600060208201905081810360008301526125108161229f565b9050919050565b600060208201905061252c60008301846122c2565b92915050565b600060a08201905061254760008301886122c2565b61255460208301876120f9565b8181036040830152612566818661208c565b9050612575606083018561207d565b61258260808301846122c2565b9695505050505050565b60006020820190506125a160008301846122d1565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006126128261275a565b915061261d8361275a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612652576126516127e8565b5b828201905092915050565b60006126688261275a565b91506126738361275a565b92508261268357612682612817565b5b828204905092915050565b60006126998261275a565b91506126a48361275a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156126dd576126dc6127e8565b5b828202905092915050565b60006126f38261275a565b91506126fe8361275a565b925082821015612711576127106127e8565b5b828203905092915050565b60006127278261273a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061277c8261275a565b9050919050565b60005b838110156127a1578082015181840152602081019050612786565b838111156127b0576000848401525b50505050565b600060028204905060018216806127ce57607f821691505b602082108114156127e2576127e1612846565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f6d61782077616c6c657400000000000000000000000000000000000000000000600082015250565b612b368161271c565b8114612b4157600080fd5b50565b612b4d8161275a565b8114612b5857600080fd5b5056fea2646970667358221220e4ac696eb1794d2eaf13b66c7df65200db494b5dc5bd5e049da8a1eff3fd926a64736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101445760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d71461045b578063a9059cbb14610498578063c9567bf9146104d5578063dd62ed3e146104ec578063e639a5d514610529578063f8b45b05146105405761014b565b806370a082311461036f578063715018a6146103ac57806375f0a874146103c35780638da5cb5b146103ee578063909278811461041957806395d89b41146104305761014b565b806323b872dd1161010857806323b872dd1461024b578063313ce5671461028857806339509351146102b357806349bd5a5e146102f057806362e9ddd41461031b5780636abfe846146103465761014b565b806306fdde031461015057806308aa26951461017b578063095ea7b3146101a6578063098fec39146101e357806318160ddd146102205761014b565b3661014b57005b600080fd5b34801561015c57600080fd5b5061016561056b565b60405161017291906123b5565b60405180910390f35b34801561018757600080fd5b506101906105fd565b60405161019d9190612517565b60405180910390f35b3480156101b257600080fd5b506101cd60048036038101906101c89190611fa2565b610603565b6040516101da919061239a565b60405180910390f35b3480156101ef57600080fd5b5061020a60048036038101906102059190611ec5565b610621565b6040516102179190612517565b60405180910390f35b34801561022c57600080fd5b50610235610639565b6040516102429190612517565b60405180910390f35b34801561025757600080fd5b50610272600480360381019061026d9190611f53565b610643565b60405161027f919061239a565b60405180910390f35b34801561029457600080fd5b5061029d61073b565b6040516102aa919061258c565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190611fa2565b610744565b6040516102e7919061239a565b60405180910390f35b3480156102fc57600080fd5b506103056107f0565b60405161031291906122f5565b60405180910390f35b34801561032757600080fd5b50610330610816565b60405161033d9190612517565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190611fde565b61081c565b005b34801561037b57600080fd5b5061039660048036038101906103919190611ec5565b6108bd565b6040516103a39190612517565b60405180910390f35b3480156103b857600080fd5b506103c1610906565b005b3480156103cf57600080fd5b506103d861098e565b6040516103e591906122f5565b60405180910390f35b3480156103fa57600080fd5b506104036109b4565b60405161041091906122f5565b60405180910390f35b34801561042557600080fd5b5061042e6109dd565b005b34801561043c57600080fd5b50610445610a64565b60405161045291906123b5565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190611fa2565b610af6565b60405161048f919061239a565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190611fa2565b610be1565b6040516104cc919061239a565b60405180910390f35b3480156104e157600080fd5b506104ea610bff565b005b3480156104f857600080fd5b50610513600480360381019061050e9190611f17565b610f8d565b6040516105209190612517565b60405180910390f35b34801561053557600080fd5b5061053e611014565b005b34801561054c57600080fd5b5061055561109a565b6040516105629190612517565b60405180910390f35b60606004805461057a906127b6565b80601f01602080910402602001604051908101604052809291908181526020018280546105a6906127b6565b80156105f35780601f106105c8576101008083540402835291602001916105f3565b820191906000526020600020905b8154815290600101906020018083116105d657829003601f168201915b5050505050905090565b600e5481565b60006106176106106110a0565b84846110a8565b6001905092915050565b600d6020528060005260406000206000915090505481565b6000600354905090565b6000610650848484611273565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061069b6110a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290612457565b60405180910390fd5b61072f856107276110a0565b8584036110a8565b60019150509392505050565b60006012905090565b60006107e66107516110a0565b84846002600061075f6110a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107e19190612607565b6110a8565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6108246110a0565b73ffffffffffffffffffffffffffffffffffffffff166108426109b4565b73ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90612477565b60405180910390fd5b60326008546108a7919061265d565b8111156108b357600080fd5b80600e8190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61090e6110a0565b73ffffffffffffffffffffffffffffffffffffffff1661092c6109b4565b73ffffffffffffffffffffffffffffffffffffffff1614610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097990612477565b60405180910390fd5b61098c60006117cf565b565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109e56110a0565b73ffffffffffffffffffffffffffffffffffffffff16610a036109b4565b73ffffffffffffffffffffffffffffffffffffffff1614610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090612477565b60405180910390fd5b600854600681905550565b606060058054610a73906127b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9f906127b6565b8015610aec5780601f10610ac157610100808354040283529160200191610aec565b820191906000526020600020905b815481529060010190602001808311610acf57829003601f168201915b5050505050905090565b60008060026000610b056110a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb9906124d7565b60405180910390fd5b610bd6610bcd6110a0565b858584036110a8565b600191505092915050565b6000610bf5610bee6110a0565b8484611273565b6001905092915050565b610c076110a0565b73ffffffffffffffffffffffffffffffffffffffff16610c256109b4565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290612477565b60405180910390fd5b60007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610ce357600080fd5b505afa158015610cf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1b9190611eee565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610d9d57600080fd5b505afa158015610db1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd59190611eee565b6040518363ffffffff1660e01b8152600401610df2929190612310565b602060405180830381600087803b158015610e0c57600080fd5b505af1158015610e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e449190611eee565b9050610e79307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610e74306108bd565b6110a8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610ec0306108bd565b600080610ecb6109b4565b426040518863ffffffff1660e01b8152600401610eed96959493929190612339565b6060604051808303818588803b158015610f0657600080fd5b505af1158015610f1a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f3f9190612007565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555043600c8190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61101c6110a0565b73ffffffffffffffffffffffffffffffffffffffff1661103a6109b4565b73ffffffffffffffffffffffffffffffffffffffff1614611090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108790612477565b60405180910390fd5b6000600a81905550565b60065481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906124b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90612417565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112669190612517565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113f9573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113305750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061136d575061133e6109b4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806113aa575061137b6109b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e0906123f7565b60405180910390fd5b6113f4838383611893565b6117ca565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561148257503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114c157506114916109b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561151957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611577576006548161152b846108bd565b6115359190612607565b1115611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d906124f7565b60405180910390fd5b5b6000611582306108bd565b9050600e5481111561159457600e5490505b6000600e541180156115a75750600e5481145b80156115c05750600b60009054906101000a900460ff16155b801561161a5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611678576001600b60006101000a81548160ff02191690831515021790555061164381611b17565b6000479050600081111561165b5761165a81611dd5565b5b6000600b60006101000a81548160ff021916908315150217905550505b60006001600c546116899190612607565b43101561169a5760095490506116ac565b6000600a5411156116ab57600a5490505b5b6000811180156116e857503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561172757506116f76109b4565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561177f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156117bc5760006103e88285611795919061268e565b61179f919061265d565b905080846117ad91906126e8565b93506117ba863083611893565b505b6117c7858585611893565b50505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90612497565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a906123d7565b60405180910390fd5b61197e838383611e67565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90612437565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a9a9190612607565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611afe9190612517565b60405180910390a3611b11848484611e6c565b50505050565b6000600267ffffffffffffffff811115611b5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611b885781602001602082028036833780820191505090505b5090503081600081518110611bc6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611c6657600080fd5b505afa158015611c7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9e9190611eee565b81600181518110611cd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611d3d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110a8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611d9f959493929190612532565b600060405180830381600087803b158015611db957600080fd5b505af1158015611dcd573d6000803e3d6000fd5b505050505050565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611e1d906122e0565b60006040518083038185875af1925050503d8060008114611e5a576040519150601f19603f3d011682016040523d82523d6000602084013e611e5f565b606091505b505090505050565b505050565b505050565b600081359050611e8081612b2d565b92915050565b600081519050611e9581612b2d565b92915050565b600081359050611eaa81612b44565b92915050565b600081519050611ebf81612b44565b92915050565b600060208284031215611ed757600080fd5b6000611ee584828501611e71565b91505092915050565b600060208284031215611f0057600080fd5b6000611f0e84828501611e86565b91505092915050565b60008060408385031215611f2a57600080fd5b6000611f3885828601611e71565b9250506020611f4985828601611e71565b9150509250929050565b600080600060608486031215611f6857600080fd5b6000611f7686828701611e71565b9350506020611f8786828701611e71565b9250506040611f9886828701611e9b565b9150509250925092565b60008060408385031215611fb557600080fd5b6000611fc385828601611e71565b9250506020611fd485828601611e9b565b9150509250929050565b600060208284031215611ff057600080fd5b6000611ffe84828501611e9b565b91505092915050565b60008060006060848603121561201c57600080fd5b600061202a86828701611eb0565b935050602061203b86828701611eb0565b925050604061204c86828701611eb0565b9150509250925092565b6000612062838361206e565b60208301905092915050565b6120778161271c565b82525050565b6120868161271c565b82525050565b6000612097826125b7565b6120a181856125da565b93506120ac836125a7565b8060005b838110156120dd5781516120c48882612056565b97506120cf836125cd565b9250506001810190506120b0565b5085935050505092915050565b6120f38161272e565b82525050565b61210281612771565b82525050565b6000612113826125c2565b61211d81856125f6565b935061212d818560208601612783565b61213681612875565b840191505092915050565b600061214e6023836125f6565b915061215982612886565b604082019050919050565b6000612171600b836125f6565b915061217c826128d5565b602082019050919050565b60006121946022836125f6565b915061219f826128fe565b604082019050919050565b60006121b76026836125f6565b91506121c28261294d565b604082019050919050565b60006121da6028836125f6565b91506121e58261299c565b604082019050919050565b60006121fd6020836125f6565b9150612208826129eb565b602082019050919050565b60006122206025836125f6565b915061222b82612a14565b604082019050919050565b60006122436000836125eb565b915061224e82612a63565b600082019050919050565b60006122666024836125f6565b915061227182612a66565b604082019050919050565b60006122896025836125f6565b915061229482612ab5565b604082019050919050565b60006122ac600a836125f6565b91506122b782612b04565b602082019050919050565b6122cb8161275a565b82525050565b6122da81612764565b82525050565b60006122eb82612236565b9150819050919050565b600060208201905061230a600083018461207d565b92915050565b6000604082019050612325600083018561207d565b612332602083018461207d565b9392505050565b600060c08201905061234e600083018961207d565b61235b60208301886122c2565b61236860408301876120f9565b61237560608301866120f9565b612382608083018561207d565b61238f60a08301846122c2565b979650505050505050565b60006020820190506123af60008301846120ea565b92915050565b600060208201905081810360008301526123cf8184612108565b905092915050565b600060208201905081810360008301526123f081612141565b9050919050565b6000602082019050818103600083015261241081612164565b9050919050565b6000602082019050818103600083015261243081612187565b9050919050565b60006020820190508181036000830152612450816121aa565b9050919050565b60006020820190508181036000830152612470816121cd565b9050919050565b60006020820190508181036000830152612490816121f0565b9050919050565b600060208201905081810360008301526124b081612213565b9050919050565b600060208201905081810360008301526124d081612259565b9050919050565b600060208201905081810360008301526124f08161227c565b9050919050565b600060208201905081810360008301526125108161229f565b9050919050565b600060208201905061252c60008301846122c2565b92915050565b600060a08201905061254760008301886122c2565b61255460208301876120f9565b8181036040830152612566818661208c565b9050612575606083018561207d565b61258260808301846122c2565b9695505050505050565b60006020820190506125a160008301846122d1565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006126128261275a565b915061261d8361275a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612652576126516127e8565b5b828201905092915050565b60006126688261275a565b91506126738361275a565b92508261268357612682612817565b5b828204905092915050565b60006126998261275a565b91506126a48361275a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156126dd576126dc6127e8565b5b828202905092915050565b60006126f38261275a565b91506126fe8361275a565b925082821015612711576127106127e8565b5b828203905092915050565b60006127278261273a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061277c8261275a565b9050919050565b60005b838110156127a1578082015181840152602081019050612786565b838111156127b0576000848401525b50505050565b600060028204905060018216806127ce57607f821691505b602082108114156127e2576127e1612846565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f6d61782077616c6c657400000000000000000000000000000000000000000000600082015250565b612b368161271c565b8114612b4157600080fd5b50565b612b4d8161275a565b8114612b5857600080fd5b5056fea2646970667358221220e4ac696eb1794d2eaf13b66c7df65200db494b5dc5bd5e049da8a1eff3fd926a64736f6c63430008040033
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.