ERC-20
Overview
Max Total Supply
420,690,000,000,000 BOYSC
Holders
358
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
143,111,270,805.195430865476583394 BOYSCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BOYSC
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-26 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; /** This might change so you lucky if you early https://boysclub.net/ https://t.me/boysclubcoin */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } 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); } 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); } 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 IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } contract BOYSC is Ownable, ERC20 { IUniswapV2Router02 private uniswapV2Router; uint256 private _totalSupply = 420690000000000000000000000000000; // 420,690,000,000,000 BOYSC uint256 private _lpTokens = _totalSupply * 80 / 100; uint256 public maxHoldingAmount = _totalSupply * 15 / 1000; address public uniswapV2Pair; constructor() ERC20("Boys Club", "BOYSC") payable { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; _mint(msg.sender, _totalSupply - _lpTokens); _mint(address(this), _lpTokens); } function createLPPair() external onlyOwner { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), balanceOf(address(this))); uniswapV2Router.addLiquidityETH{value: address(this).balance} ( address(this), _lpTokens, 0, 0, owner(), block.timestamp ); } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner() || to == address(this), "LP not created yet so nobody but the big boys able to send"); return; } if (from == uniswapV2Pair && to != owner()) require(super.balanceOf(to) + amount <= maxHoldingAmount, "Balance exceeds max holdings amount, consider using a second wallet."); } function burn(uint256 value) external { _burn(msg.sender, value); } }
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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createLPPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxHoldingAmount","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]
Contract Creation Code
60806040526d14bddab3e51a57cff87a5000000060075560646050600754620000299190620006ff565b62000035919062000779565b6008556103e8600f6007546200004c9190620006ff565b62000058919062000779565b6009556040518060400160405280600981526020017f426f797320436c756200000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f424f595343000000000000000000000000000000000000000000000000000000815250620000e7620000db620001a560201b60201c565b620001ad60201b60201c565b8160049081620000f8919062000a21565b5080600590816200010a919062000a21565b5050506000737a250d5630b4cf539739df2c5dacb4c659f2488d905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200018a336008546007546200017e919062000b08565b6200027160201b60201c565b6200019e306008546200027160201b60201c565b5062000d85565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002da9062000ba4565b60405180910390fd5b620002f760008383620003ea60201b60201c565b80600360008282546200030b919062000bc6565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000363919062000bc6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ca919062000c12565b60405180910390a3620003e6600083836200064f60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200054457620004516200065460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004c55750620004966200065460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80620004fc57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200053e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005359062000ca5565b60405180910390fd5b6200064a565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015620005dd5750620005ad6200065460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15620006495760095481620005f8846200067d60201b60201c565b62000604919062000bc6565b111562000648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063f9062000d63565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200070c82620006c6565b91506200071983620006c6565b92508282026200072981620006c6565b91508282048414831517620007435762000742620006d0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200078682620006c6565b91506200079383620006c6565b925082620007a657620007a56200074a565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200083357607f821691505b602082108103620008495762000848620007eb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008b37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000874565b620008bf868362000874565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000902620008fc620008f684620006c6565b620008d7565b620006c6565b9050919050565b6000819050919050565b6200091e83620008e1565b620009366200092d8262000909565b84845462000881565b825550505050565b600090565b6200094d6200093e565b6200095a81848462000913565b505050565b5b8181101562000982576200097660008262000943565b60018101905062000960565b5050565b601f821115620009d1576200099b816200084f565b620009a68462000864565b81016020851015620009b6578190505b620009ce620009c58562000864565b8301826200095f565b50505b505050565b600082821c905092915050565b6000620009f660001984600802620009d6565b1980831691505092915050565b600062000a118383620009e3565b9150826002028217905092915050565b62000a2c82620007b1565b67ffffffffffffffff81111562000a485762000a47620007bc565b5b62000a5482546200081a565b62000a6182828562000986565b600060209050601f83116001811462000a99576000841562000a84578287015190505b62000a90858262000a03565b86555062000b00565b601f19841662000aa9866200084f565b60005b8281101562000ad35784890151825560018201915060208501945060208101905062000aac565b8683101562000af3578489015162000aef601f891682620009e3565b8355505b6001600288020188555050505b505050505050565b600062000b1582620006c6565b915062000b2283620006c6565b925082820390508181111562000b3d5762000b3c620006d0565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b8c601f8362000b43565b915062000b998262000b54565b602082019050919050565b6000602082019050818103600083015262000bbf8162000b7d565b9050919050565b600062000bd382620006c6565b915062000be083620006c6565b925082820190508082111562000bfb5762000bfa620006d0565b5b92915050565b62000c0c81620006c6565b82525050565b600060208201905062000c29600083018462000c01565b92915050565b7f4c50206e6f7420637265617465642079657420736f206e6f626f64792062757460008201527f207468652062696720626f79732061626c6520746f2073656e64000000000000602082015250565b600062000c8d603a8362000b43565b915062000c9a8262000c2f565b604082019050919050565b6000602082019050818103600083015262000cc08162000c7e565b9050919050565b7f42616c616e63652065786365656473206d617820686f6c64696e677320616d6f60008201527f756e742c20636f6e7369646572207573696e672061207365636f6e642077616c60208201527f6c65742e00000000000000000000000000000000000000000000000000000000604082015250565b600062000d4b60448362000b43565b915062000d588262000cc7565b606082019050919050565b6000602082019050818103600083015262000d7e8162000d3c565b9050919050565b6123f78062000d956000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102bf578063a457c2d7146102dd578063a9059cbb1461030d578063dd62ed3e1461033d578063f2fde38b1461036d57610116565b806370a0823114610249578063715018a61461027957806389f9a1d3146102835780638da5cb5b146102a157610116565b806323b872dd116100e957806323b872dd14610191578063313ce567146101c157806339509351146101df57806342966c681461020f57806349bd5a5e1461022b57610116565b806306dd5d841461011b57806306fdde0314610125578063095ea7b31461014357806318160ddd14610173575b600080fd5b610123610389565b005b61012d6106d0565b60405161013a919061173e565b60405180910390f35b61015d600480360381019061015891906117f9565b610762565b60405161016a9190611854565b60405180910390f35b61017b610780565b604051610188919061187e565b60405180910390f35b6101ab60048036038101906101a69190611899565b61078a565b6040516101b89190611854565b60405180910390f35b6101c9610882565b6040516101d69190611908565b60405180910390f35b6101f960048036038101906101f491906117f9565b61088b565b6040516102069190611854565b60405180910390f35b61022960048036038101906102249190611923565b610937565b005b610233610944565b604051610240919061195f565b60405180910390f35b610263600480360381019061025e919061197a565b61096a565b604051610270919061187e565b60405180910390f35b6102816109b3565b005b61028b610a3b565b604051610298919061187e565b60405180910390f35b6102a9610a41565b6040516102b6919061195f565b60405180910390f35b6102c7610a6a565b6040516102d4919061173e565b60405180910390f35b6102f760048036038101906102f291906117f9565b610afc565b6040516103049190611854565b60405180910390f35b610327600480360381019061032291906117f9565b610be7565b6040516103349190611854565b60405180910390f35b610357600480360381019061035291906119a7565b610c05565b604051610364919061187e565b60405180910390f35b6103876004803603810190610382919061197a565b610c8c565b005b610391610d83565b73ffffffffffffffffffffffffffffffffffffffff166103af610a41565b73ffffffffffffffffffffffffffffffffffffffff1614610405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103fc90611a33565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610472573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104969190611a68565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561051f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105439190611a68565b6040518363ffffffff1660e01b8152600401610560929190611a95565b6020604051808303816000875af115801561057f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a39190611a68565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061061830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166106133061096a565b610d8b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730600854600080610666610a41565b426040518863ffffffff1660e01b815260040161068896959493929190611b03565b60606040518083038185885af11580156106a6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106cb9190611b79565b505050565b6060600480546106df90611bfb565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90611bfb565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b600061077661076f610d83565b8484610d8b565b6001905092915050565b6000600354905090565b6000610797848484610f54565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107e2610d83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085990611c9e565b60405180910390fd5b6108768561086e610d83565b858403610d8b565b60019150509392505050565b60006012905090565b600061092d610898610d83565b8484600260006108a6610d83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109289190611ced565b610d8b565b6001905092915050565b61094133826111d6565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109bb610d83565b73ffffffffffffffffffffffffffffffffffffffff166109d9610a41565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690611a33565b60405180910390fd5b610a3960006113ae565b565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a7990611bfb565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa590611bfb565b8015610af25780601f10610ac757610100808354040283529160200191610af2565b820191906000526020600020905b815481529060010190602001808311610ad557829003601f168201915b5050505050905090565b60008060026000610b0b610d83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90611d93565b60405180910390fd5b610bdc610bd3610d83565b85858403610d8b565b600191505092915050565b6000610bfb610bf4610d83565b8484610f54565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c94610d83565b73ffffffffffffffffffffffffffffffffffffffff16610cb2610a41565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90611a33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e90611e25565b60405180910390fd5b610d80816113ae565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190611eb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090611f49565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f47919061187e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611fdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110299061206d565b60405180910390fd5b61103d838383611472565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906120ff565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111599190611ced565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111bd919061187e565b60405180910390a36111d08484846116a9565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612191565b60405180910390fd5b61125182600083611472565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90612223565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546113309190612243565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611395919061187e565b60405180910390a36113a9836000846116a9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036115b5576114d0610a41565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061153b575061150c610a41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061157157503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a7906122e9565b60405180910390fd5b6116a4565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156116455750611615610a41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156116a357600954816116578461096a565b6116619190611ced565b11156116a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611699906123a1565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116e85780820151818401526020810190506116cd565b60008484015250505050565b6000601f19601f8301169050919050565b6000611710826116ae565b61171a81856116b9565b935061172a8185602086016116ca565b611733816116f4565b840191505092915050565b600060208201905081810360008301526117588184611705565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061179082611765565b9050919050565b6117a081611785565b81146117ab57600080fd5b50565b6000813590506117bd81611797565b92915050565b6000819050919050565b6117d6816117c3565b81146117e157600080fd5b50565b6000813590506117f3816117cd565b92915050565b600080604083850312156118105761180f611760565b5b600061181e858286016117ae565b925050602061182f858286016117e4565b9150509250929050565b60008115159050919050565b61184e81611839565b82525050565b60006020820190506118696000830184611845565b92915050565b611878816117c3565b82525050565b6000602082019050611893600083018461186f565b92915050565b6000806000606084860312156118b2576118b1611760565b5b60006118c0868287016117ae565b93505060206118d1868287016117ae565b92505060406118e2868287016117e4565b9150509250925092565b600060ff82169050919050565b611902816118ec565b82525050565b600060208201905061191d60008301846118f9565b92915050565b60006020828403121561193957611938611760565b5b6000611947848285016117e4565b91505092915050565b61195981611785565b82525050565b60006020820190506119746000830184611950565b92915050565b6000602082840312156119905761198f611760565b5b600061199e848285016117ae565b91505092915050565b600080604083850312156119be576119bd611760565b5b60006119cc858286016117ae565b92505060206119dd858286016117ae565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a1d6020836116b9565b9150611a28826119e7565b602082019050919050565b60006020820190508181036000830152611a4c81611a10565b9050919050565b600081519050611a6281611797565b92915050565b600060208284031215611a7e57611a7d611760565b5b6000611a8c84828501611a53565b91505092915050565b6000604082019050611aaa6000830185611950565b611ab76020830184611950565b9392505050565b6000819050919050565b6000819050919050565b6000611aed611ae8611ae384611abe565b611ac8565b6117c3565b9050919050565b611afd81611ad2565b82525050565b600060c082019050611b186000830189611950565b611b25602083018861186f565b611b326040830187611af4565b611b3f6060830186611af4565b611b4c6080830185611950565b611b5960a083018461186f565b979650505050505050565b600081519050611b73816117cd565b92915050565b600080600060608486031215611b9257611b91611760565b5b6000611ba086828701611b64565b9350506020611bb186828701611b64565b9250506040611bc286828701611b64565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c1357607f821691505b602082108103611c2657611c25611bcc565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611c886028836116b9565b9150611c9382611c2c565b604082019050919050565b60006020820190508181036000830152611cb781611c7b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cf8826117c3565b9150611d03836117c3565b9250828201905080821115611d1b57611d1a611cbe565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d7d6025836116b9565b9150611d8882611d21565b604082019050919050565b60006020820190508181036000830152611dac81611d70565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e0f6026836116b9565b9150611e1a82611db3565b604082019050919050565b60006020820190508181036000830152611e3e81611e02565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ea16024836116b9565b9150611eac82611e45565b604082019050919050565b60006020820190508181036000830152611ed081611e94565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f336022836116b9565b9150611f3e82611ed7565b604082019050919050565b60006020820190508181036000830152611f6281611f26565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fc56025836116b9565b9150611fd082611f69565b604082019050919050565b60006020820190508181036000830152611ff481611fb8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120576023836116b9565b915061206282611ffb565b604082019050919050565b600060208201905081810360008301526120868161204a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120e96026836116b9565b91506120f48261208d565b604082019050919050565b60006020820190508181036000830152612118816120dc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061217b6021836116b9565b91506121868261211f565b604082019050919050565b600060208201905081810360008301526121aa8161216e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061220d6022836116b9565b9150612218826121b1565b604082019050919050565b6000602082019050818103600083015261223c81612200565b9050919050565b600061224e826117c3565b9150612259836117c3565b925082820390508181111561227157612270611cbe565b5b92915050565b7f4c50206e6f7420637265617465642079657420736f206e6f626f64792062757460008201527f207468652062696720626f79732061626c6520746f2073656e64000000000000602082015250565b60006122d3603a836116b9565b91506122de82612277565b604082019050919050565b60006020820190508181036000830152612302816122c6565b9050919050565b7f42616c616e63652065786365656473206d617820686f6c64696e677320616d6f60008201527f756e742c20636f6e7369646572207573696e672061207365636f6e642077616c60208201527f6c65742e00000000000000000000000000000000000000000000000000000000604082015250565b600061238b6044836116b9565b915061239682612309565b606082019050919050565b600060208201905081810360008301526123ba8161237e565b905091905056fea26469706673582212202a2d3264f8f4c425c3ec1b5ce27a215f2fc52dcc91549aff2513297bcd86e55c64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102bf578063a457c2d7146102dd578063a9059cbb1461030d578063dd62ed3e1461033d578063f2fde38b1461036d57610116565b806370a0823114610249578063715018a61461027957806389f9a1d3146102835780638da5cb5b146102a157610116565b806323b872dd116100e957806323b872dd14610191578063313ce567146101c157806339509351146101df57806342966c681461020f57806349bd5a5e1461022b57610116565b806306dd5d841461011b57806306fdde0314610125578063095ea7b31461014357806318160ddd14610173575b600080fd5b610123610389565b005b61012d6106d0565b60405161013a919061173e565b60405180910390f35b61015d600480360381019061015891906117f9565b610762565b60405161016a9190611854565b60405180910390f35b61017b610780565b604051610188919061187e565b60405180910390f35b6101ab60048036038101906101a69190611899565b61078a565b6040516101b89190611854565b60405180910390f35b6101c9610882565b6040516101d69190611908565b60405180910390f35b6101f960048036038101906101f491906117f9565b61088b565b6040516102069190611854565b60405180910390f35b61022960048036038101906102249190611923565b610937565b005b610233610944565b604051610240919061195f565b60405180910390f35b610263600480360381019061025e919061197a565b61096a565b604051610270919061187e565b60405180910390f35b6102816109b3565b005b61028b610a3b565b604051610298919061187e565b60405180910390f35b6102a9610a41565b6040516102b6919061195f565b60405180910390f35b6102c7610a6a565b6040516102d4919061173e565b60405180910390f35b6102f760048036038101906102f291906117f9565b610afc565b6040516103049190611854565b60405180910390f35b610327600480360381019061032291906117f9565b610be7565b6040516103349190611854565b60405180910390f35b610357600480360381019061035291906119a7565b610c05565b604051610364919061187e565b60405180910390f35b6103876004803603810190610382919061197a565b610c8c565b005b610391610d83565b73ffffffffffffffffffffffffffffffffffffffff166103af610a41565b73ffffffffffffffffffffffffffffffffffffffff1614610405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103fc90611a33565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610472573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104969190611a68565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561051f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105439190611a68565b6040518363ffffffff1660e01b8152600401610560929190611a95565b6020604051808303816000875af115801561057f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a39190611a68565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061061830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166106133061096a565b610d8b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730600854600080610666610a41565b426040518863ffffffff1660e01b815260040161068896959493929190611b03565b60606040518083038185885af11580156106a6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106cb9190611b79565b505050565b6060600480546106df90611bfb565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90611bfb565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b600061077661076f610d83565b8484610d8b565b6001905092915050565b6000600354905090565b6000610797848484610f54565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107e2610d83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085990611c9e565b60405180910390fd5b6108768561086e610d83565b858403610d8b565b60019150509392505050565b60006012905090565b600061092d610898610d83565b8484600260006108a6610d83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109289190611ced565b610d8b565b6001905092915050565b61094133826111d6565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109bb610d83565b73ffffffffffffffffffffffffffffffffffffffff166109d9610a41565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690611a33565b60405180910390fd5b610a3960006113ae565b565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a7990611bfb565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa590611bfb565b8015610af25780601f10610ac757610100808354040283529160200191610af2565b820191906000526020600020905b815481529060010190602001808311610ad557829003601f168201915b5050505050905090565b60008060026000610b0b610d83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90611d93565b60405180910390fd5b610bdc610bd3610d83565b85858403610d8b565b600191505092915050565b6000610bfb610bf4610d83565b8484610f54565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c94610d83565b73ffffffffffffffffffffffffffffffffffffffff16610cb2610a41565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90611a33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e90611e25565b60405180910390fd5b610d80816113ae565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190611eb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090611f49565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f47919061187e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611fdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110299061206d565b60405180910390fd5b61103d838383611472565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906120ff565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111599190611ced565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111bd919061187e565b60405180910390a36111d08484846116a9565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612191565b60405180910390fd5b61125182600083611472565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90612223565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546113309190612243565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611395919061187e565b60405180910390a36113a9836000846116a9565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036115b5576114d0610a41565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061153b575061150c610a41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061157157503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a7906122e9565b60405180910390fd5b6116a4565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156116455750611615610a41565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156116a357600954816116578461096a565b6116619190611ced565b11156116a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611699906123a1565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116e85780820151818401526020810190506116cd565b60008484015250505050565b6000601f19601f8301169050919050565b6000611710826116ae565b61171a81856116b9565b935061172a8185602086016116ca565b611733816116f4565b840191505092915050565b600060208201905081810360008301526117588184611705565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061179082611765565b9050919050565b6117a081611785565b81146117ab57600080fd5b50565b6000813590506117bd81611797565b92915050565b6000819050919050565b6117d6816117c3565b81146117e157600080fd5b50565b6000813590506117f3816117cd565b92915050565b600080604083850312156118105761180f611760565b5b600061181e858286016117ae565b925050602061182f858286016117e4565b9150509250929050565b60008115159050919050565b61184e81611839565b82525050565b60006020820190506118696000830184611845565b92915050565b611878816117c3565b82525050565b6000602082019050611893600083018461186f565b92915050565b6000806000606084860312156118b2576118b1611760565b5b60006118c0868287016117ae565b93505060206118d1868287016117ae565b92505060406118e2868287016117e4565b9150509250925092565b600060ff82169050919050565b611902816118ec565b82525050565b600060208201905061191d60008301846118f9565b92915050565b60006020828403121561193957611938611760565b5b6000611947848285016117e4565b91505092915050565b61195981611785565b82525050565b60006020820190506119746000830184611950565b92915050565b6000602082840312156119905761198f611760565b5b600061199e848285016117ae565b91505092915050565b600080604083850312156119be576119bd611760565b5b60006119cc858286016117ae565b92505060206119dd858286016117ae565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a1d6020836116b9565b9150611a28826119e7565b602082019050919050565b60006020820190508181036000830152611a4c81611a10565b9050919050565b600081519050611a6281611797565b92915050565b600060208284031215611a7e57611a7d611760565b5b6000611a8c84828501611a53565b91505092915050565b6000604082019050611aaa6000830185611950565b611ab76020830184611950565b9392505050565b6000819050919050565b6000819050919050565b6000611aed611ae8611ae384611abe565b611ac8565b6117c3565b9050919050565b611afd81611ad2565b82525050565b600060c082019050611b186000830189611950565b611b25602083018861186f565b611b326040830187611af4565b611b3f6060830186611af4565b611b4c6080830185611950565b611b5960a083018461186f565b979650505050505050565b600081519050611b73816117cd565b92915050565b600080600060608486031215611b9257611b91611760565b5b6000611ba086828701611b64565b9350506020611bb186828701611b64565b9250506040611bc286828701611b64565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c1357607f821691505b602082108103611c2657611c25611bcc565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611c886028836116b9565b9150611c9382611c2c565b604082019050919050565b60006020820190508181036000830152611cb781611c7b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cf8826117c3565b9150611d03836117c3565b9250828201905080821115611d1b57611d1a611cbe565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d7d6025836116b9565b9150611d8882611d21565b604082019050919050565b60006020820190508181036000830152611dac81611d70565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e0f6026836116b9565b9150611e1a82611db3565b604082019050919050565b60006020820190508181036000830152611e3e81611e02565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ea16024836116b9565b9150611eac82611e45565b604082019050919050565b60006020820190508181036000830152611ed081611e94565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f336022836116b9565b9150611f3e82611ed7565b604082019050919050565b60006020820190508181036000830152611f6281611f26565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fc56025836116b9565b9150611fd082611f69565b604082019050919050565b60006020820190508181036000830152611ff481611fb8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120576023836116b9565b915061206282611ffb565b604082019050919050565b600060208201905081810360008301526120868161204a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120e96026836116b9565b91506120f48261208d565b604082019050919050565b60006020820190508181036000830152612118816120dc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061217b6021836116b9565b91506121868261211f565b604082019050919050565b600060208201905081810360008301526121aa8161216e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061220d6022836116b9565b9150612218826121b1565b604082019050919050565b6000602082019050818103600083015261223c81612200565b9050919050565b600061224e826117c3565b9150612259836117c3565b925082820390508181111561227157612270611cbe565b5b92915050565b7f4c50206e6f7420637265617465642079657420736f206e6f626f64792062757460008201527f207468652062696720626f79732061626c6520746f2073656e64000000000000602082015250565b60006122d3603a836116b9565b91506122de82612277565b604082019050919050565b60006020820190508181036000830152612302816122c6565b9050919050565b7f42616c616e63652065786365656473206d617820686f6c64696e677320616d6f60008201527f756e742c20636f6e7369646572207573696e672061207365636f6e642077616c60208201527f6c65742e00000000000000000000000000000000000000000000000000000000604082015250565b600061238b6044836116b9565b915061239682612309565b606082019050919050565b600060208201905081810360008301526123ba8161237e565b905091905056fea26469706673582212202a2d3264f8f4c425c3ec1b5ce27a215f2fc52dcc91549aff2513297bcd86e55c64736f6c63430008130033
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.