Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DeFi
Overview
Max Total Supply
10,000,000,000 MPEPE
Holders
1,132 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
600,777.380084453645714798 MPEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MicroPepe
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.19; */ /** * @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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @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 ); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract MicroPepe is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = true; bool public swapEnabled = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("MicroPepe", "MPEPE") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 99; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 30; uint256 totalSupply = 10000000000 * 1e18; maxTransactionAmount = 300000000 * 1e18; // 0.5% from total supply maxTransactionAmountTxn maxWallet = 300000000 * 1e18; // 1% from total supply maxWallet swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0xB1E070A1D72782F1251753cdb00503f81AC8553C); // 1% of every transaction is dedicated for Micro Pepe devWallet = address(0xB1E070A1D72782F1251753cdb00503f81AC8553C); // 2% of every transaction supports Micro Pepe // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10 ** 18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require( (_marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%" ); buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require( (_marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%" ); sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{value: ethForMarketing}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } } }
{ "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":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f4d6963726f5065706500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d504550450000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000d50565b5080600490816200010d919062000d50565b50505062000130620001246200059760201b60201c565b6200059f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c8160016200066560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000ea1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000ea1565b6040518363ffffffff1660e01b8152600401620002af92919062000ee4565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000ea1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a05160016200066560201b60201c565b6200035260a05160016200074f60201b60201c565b600080600060639050600080600190506000601e905060006b204fce5e3e2502611000000090506af8277896582678ac0000006008819055506af8277896582678ac000000600a81905550612710600a82620003af919062000f40565b620003bb919062000fba565b60098190555086600f819055508560108190555084601181905550601154601054600f54620003eb919062000ff2565b620003f7919062000ff2565b600e8190555083601381905550826014819055508160158190555060155460145460135462000427919062000ff2565b62000433919062000ff2565b60128190555073b1e070a1d72782f1251753cdb00503f81ac8553c600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b1e070a1d72782f1251753cdb00503f81ac8553c600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000505620004f7620007f060201b60201c565b60016200081a60201b60201c565b620005183060016200081a60201b60201c565b6200052d61dead60016200081a60201b60201c565b6200054f62000541620007f060201b60201c565b60016200066560201b60201c565b620005623060016200066560201b60201c565b6200057761dead60016200066560201b60201c565b6200058933826200095460201b60201c565b50505050505050506200118a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006756200059760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200069b620007f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006eb906200108e565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200082a6200059760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000850620007f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a0906200108e565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009489190620010cd565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009bd906200113a565b60405180910390fd5b620009da6000838362000acc60201b60201c565b8060026000828254620009ee919062000ff2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a45919062000ff2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aac91906200116d565b60405180910390a362000ac86000838362000ad160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b5857607f821691505b60208210810362000b6e5762000b6d62000b10565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bd87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b99565b62000be4868362000b99565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c3162000c2b62000c258462000bfc565b62000c06565b62000bfc565b9050919050565b6000819050919050565b62000c4d8362000c10565b62000c6562000c5c8262000c38565b84845462000ba6565b825550505050565b600090565b62000c7c62000c6d565b62000c8981848462000c42565b505050565b5b8181101562000cb15762000ca560008262000c72565b60018101905062000c8f565b5050565b601f82111562000d005762000cca8162000b74565b62000cd58462000b89565b8101602085101562000ce5578190505b62000cfd62000cf48562000b89565b83018262000c8e565b50505b505050565b600082821c905092915050565b600062000d256000198460080262000d05565b1980831691505092915050565b600062000d40838362000d12565b9150826002028217905092915050565b62000d5b8262000ad6565b67ffffffffffffffff81111562000d775762000d7662000ae1565b5b62000d83825462000b3f565b62000d9082828562000cb5565b600060209050601f83116001811462000dc8576000841562000db3578287015190505b62000dbf858262000d32565b86555062000e2f565b601f19841662000dd88662000b74565b60005b8281101562000e025784890151825560018201915060208501945060208101905062000ddb565b8683101562000e22578489015162000e1e601f89168262000d12565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e698262000e3c565b9050919050565b62000e7b8162000e5c565b811462000e8757600080fd5b50565b60008151905062000e9b8162000e70565b92915050565b60006020828403121562000eba5762000eb962000e37565b5b600062000eca8482850162000e8a565b91505092915050565b62000ede8162000e5c565b82525050565b600060408201905062000efb600083018562000ed3565b62000f0a602083018462000ed3565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f4d8262000bfc565b915062000f5a8362000bfc565b925082820262000f6a8162000bfc565b9150828204841483151762000f845762000f8362000f11565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fc78262000bfc565b915062000fd48362000bfc565b92508262000fe75762000fe662000f8b565b5b828204905092915050565b600062000fff8262000bfc565b91506200100c8362000bfc565b925082820190508082111562001027576200102662000f11565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010766020836200102d565b915062001083826200103e565b602082019050919050565b60006020820190508181036000830152620010a98162001067565b9050919050565b60008115159050919050565b620010c781620010b0565b82525050565b6000602082019050620010e46000830184620010bc565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001122601f836200102d565b91506200112f82620010ea565b602082019050919050565b60006020820190508181036000830152620011558162001113565b9050919050565b620011678162000bfc565b82525050565b60006020820190506200118460008301846200115c565b92915050565b60805160a051614d9e620011e860003960008181611025015281816117020152612561015260008181610d2901528181612509015281816135fb015281816136dc015281816137030152818161379f01526137c60152614d9e6000f3fe6080604052600436106103035760003560e01c80638ea5220f11610190578063c17b5b8c116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bad578063f2fde38b14610bd8578063f637434214610c01578063f8b45b0514610c2c5761030a565b8063dd62ed3e14610b1a578063e2f4560514610b57578063e884f26014610b825761030a565b8063c17b5b8c14610a0a578063c18bc19514610a33578063c876d0b914610a5c578063c8c8ebe414610a87578063d257b34f14610ab2578063d85ba06314610aef5761030a565b80639fccce3211610149578063a9059cbb11610123578063a9059cbb1461093c578063b62496f514610979578063bbc0c742146109b6578063c0246668146109e15761030a565b80639fccce32146108a9578063a0d82dc5146108d4578063a457c2d7146108ff5761030a565b80638ea5220f146107ab57806392136913146107d6578063924de9b71461080157806395d89b411461082a5780639a7a23d6146108555780639c3b4fdc1461087e5761030a565b80634a62bb651161024f578063751039fc116102085780637bce5a04116101e25780637bce5a04146107155780638095d564146107405780638a8c523c146107695780638da5cb5b146107805761030a565b8063751039fc146106965780637571336a146106c157806375f0a874146106ea5761030a565b80634a62bb65146105845780634fbee193146105af5780636a486a8e146105ec5780636ddd17131461061757806370a0823114610642578063715018a61461067f5761030a565b80631f3fed8f116102bc57806327c8f8351161029657806327c8f835146104c6578063313ce567146104f1578063395093511461051c57806349bd5a5e146105595761030a565b80631f3fed8f14610435578063203e727e1461046057806323b872dd146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631a8145bb1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c57565b6040516103319190613925565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906139e0565b610ce9565b60405161036e9190613a3b565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613a56565b610d07565b6040516103ab9190613a3b565b60405180910390f35b3480156103c057600080fd5b506103c9610d27565b6040516103d69190613ae2565b60405180910390f35b3480156103eb57600080fd5b506103f4610d4b565b6040516104019190613b0c565b60405180910390f35b34801561041657600080fd5b5061041f610d55565b60405161042c9190613b0c565b60405180910390f35b34801561044157600080fd5b5061044a610d5b565b6040516104579190613b0c565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613b27565b610d61565b005b34801561049557600080fd5b506104b060048036038101906104ab9190613b54565b610e70565b6040516104bd9190613a3b565b60405180910390f35b3480156104d257600080fd5b506104db610f68565b6040516104e89190613bb6565b60405180910390f35b3480156104fd57600080fd5b50610506610f6e565b6040516105139190613bed565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e91906139e0565b610f77565b6040516105509190613a3b565b60405180910390f35b34801561056557600080fd5b5061056e611023565b60405161057b9190613bb6565b60405180910390f35b34801561059057600080fd5b50610599611047565b6040516105a69190613a3b565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613a56565b61105a565b6040516105e39190613a3b565b60405180910390f35b3480156105f857600080fd5b506106016110b0565b60405161060e9190613b0c565b60405180910390f35b34801561062357600080fd5b5061062c6110b6565b6040516106399190613a3b565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190613a56565b6110c9565b6040516106769190613b0c565b60405180910390f35b34801561068b57600080fd5b50610694611111565b005b3480156106a257600080fd5b506106ab611199565b6040516106b89190613a3b565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613c34565b611239565b005b3480156106f657600080fd5b506106ff611310565b60405161070c9190613bb6565b60405180910390f35b34801561072157600080fd5b5061072a611336565b6040516107379190613b0c565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613c74565b61133c565b005b34801561077557600080fd5b5061077e61144f565b005b34801561078c57600080fd5b50610795611503565b6040516107a29190613bb6565b60405180910390f35b3480156107b757600080fd5b506107c061152d565b6040516107cd9190613bb6565b60405180910390f35b3480156107e257600080fd5b506107eb611553565b6040516107f89190613b0c565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613cc7565b611559565b005b34801561083657600080fd5b5061083f6115f2565b60405161084c9190613925565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190613c34565b611684565b005b34801561088a57600080fd5b5061089361179c565b6040516108a09190613b0c565b60405180910390f35b3480156108b557600080fd5b506108be6117a2565b6040516108cb9190613b0c565b60405180910390f35b3480156108e057600080fd5b506108e96117a8565b6040516108f69190613b0c565b60405180910390f35b34801561090b57600080fd5b50610926600480360381019061092191906139e0565b6117ae565b6040516109339190613a3b565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e91906139e0565b611899565b6040516109709190613a3b565b60405180910390f35b34801561098557600080fd5b506109a0600480360381019061099b9190613a56565b6118b7565b6040516109ad9190613a3b565b60405180910390f35b3480156109c257600080fd5b506109cb6118d7565b6040516109d89190613a3b565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190613c34565b6118ea565b005b348015610a1657600080fd5b50610a316004803603810190610a2c9190613c74565b611a0f565b005b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613b27565b611b22565b005b348015610a6857600080fd5b50610a71611c31565b604051610a7e9190613a3b565b60405180910390f35b348015610a9357600080fd5b50610a9c611c44565b604051610aa99190613b0c565b60405180910390f35b348015610abe57600080fd5b50610ad96004803603810190610ad49190613b27565b611c4a565b604051610ae69190613a3b565b60405180910390f35b348015610afb57600080fd5b50610b04611d9f565b604051610b119190613b0c565b60405180910390f35b348015610b2657600080fd5b50610b416004803603810190610b3c9190613cf4565b611da5565b604051610b4e9190613b0c565b60405180910390f35b348015610b6357600080fd5b50610b6c611e2c565b604051610b799190613b0c565b60405180910390f35b348015610b8e57600080fd5b50610b97611e32565b604051610ba49190613a3b565b60405180910390f35b348015610bb957600080fd5b50610bc2611ed2565b604051610bcf9190613b0c565b60405180910390f35b348015610be457600080fd5b50610bff6004803603810190610bfa9190613a56565b611ed8565b005b348015610c0d57600080fd5b50610c16611fcf565b604051610c239190613b0c565b60405180910390f35b348015610c3857600080fd5b50610c41611fd5565b604051610c4e9190613b0c565b60405180910390f35b606060038054610c6690613d63565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9290613d63565b8015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b5050505050905090565b6000610cfd610cf6611fdb565b8484611fe3565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60175481565b60165481565b610d69611fdb565b73ffffffffffffffffffffffffffffffffffffffff16610d87611503565b73ffffffffffffffffffffffffffffffffffffffff1614610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613de0565b60405180910390fd5b670de0b6b3a76400006103e86005610df3610d4b565b610dfd9190613e2f565b610e079190613ea0565b610e119190613ea0565b811015610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90613f43565b60405180910390fd5b670de0b6b3a764000081610e679190613e2f565b60088190555050565b6000610e7d8484846121ac565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ec8611fdb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90613fd5565b60405180910390fd5b610f5c85610f54611fdb565b858403611fe3565b60019150509392505050565b61dead81565b60006012905090565b6000611019610f84611fdb565b848460016000610f92611fdb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110149190613ff5565b611fe3565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611119611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611137611503565b73ffffffffffffffffffffffffffffffffffffffff161461118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490613de0565b60405180910390fd5b6111976000612e43565b565b60006111a3611fdb565b73ffffffffffffffffffffffffffffffffffffffff166111c1611503565b73ffffffffffffffffffffffffffffffffffffffff1614611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e90613de0565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611241611fdb565b73ffffffffffffffffffffffffffffffffffffffff1661125f611503565b73ffffffffffffffffffffffffffffffffffffffff16146112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90613de0565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b611344611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611362611503565b73ffffffffffffffffffffffffffffffffffffffff16146113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90613de0565b60405180910390fd5b600a8183856113c79190613ff5565b6113d19190613ff5565b1115611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990614075565b60405180910390fd5b82600f819055508160108190555080601181905550601154601054600f5461143a9190613ff5565b6114449190613ff5565b600e81905550505050565b611457611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611475611503565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613de0565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b611561611fdb565b73ffffffffffffffffffffffffffffffffffffffff1661157f611503565b73ffffffffffffffffffffffffffffffffffffffff16146115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613de0565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461160190613d63565b80601f016020809104026020016040519081016040528092919081815260200182805461162d90613d63565b801561167a5780601f1061164f5761010080835404028352916020019161167a565b820191906000526020600020905b81548152906001019060200180831161165d57829003601f168201915b5050505050905090565b61168c611fdb565b73ffffffffffffffffffffffffffffffffffffffff166116aa611503565b73ffffffffffffffffffffffffffffffffffffffff1614611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613de0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590614107565b60405180910390fd5b6117988282612f09565b5050565b60115481565b60185481565b60155481565b600080600160006117bd611fdb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614199565b60405180910390fd5b61188e611885611fdb565b85858403611fe3565b600191505092915050565b60006118ad6118a6611fdb565b84846121ac565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6118f2611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611910611503565b73ffffffffffffffffffffffffffffffffffffffff1614611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90613de0565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a039190613a3b565b60405180910390a25050565b611a17611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611a35611503565b73ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290613de0565b60405180910390fd5b600a818385611a9a9190613ff5565b611aa49190613ff5565b1115611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90614205565b60405180910390fd5b826013819055508160148190555080601581905550601554601454601354611b0d9190613ff5565b611b179190613ff5565b601281905550505050565b611b2a611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611b48611503565b73ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590613de0565b60405180910390fd5b670de0b6b3a76400006103e86005611bb4610d4b565b611bbe9190613e2f565b611bc89190613ea0565b611bd29190613ea0565b811015611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90614297565b60405180910390fd5b670de0b6b3a764000081611c289190613e2f565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000611c54611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611c72611503565b73ffffffffffffffffffffffffffffffffffffffff1614611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf90613de0565b60405180910390fd5b620186a06001611cd6610d4b565b611ce09190613e2f565b611cea9190613ea0565b821015611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390614329565b60405180910390fd5b6103e86005611d39610d4b565b611d439190613e2f565b611d4d9190613ea0565b821115611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d86906143bb565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611e3c611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611e5a611503565b73ffffffffffffffffffffffffffffffffffffffff1614611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea790613de0565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60105481565b611ee0611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611efe611503565b73ffffffffffffffffffffffffffffffffffffffff1614611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b90613de0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba9061444d565b60405180910390fd5b611fcc81612e43565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612049906144df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890614571565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161219f9190613b0c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290614603565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361228a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228190614695565b60405180910390fd5b600081036122a35761229e83836000612faa565b612e3e565b600b60009054906101000a900460ff1615612966576122c0611503565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561232e57506122fe611503565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123675750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123a1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123ba5750600560149054906101000a900460ff16155b1561296557600b60019054906101000a900460ff166124b457601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124745750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614701565b60405180910390fd5b5b600d60009054906101000a900460ff161561267c576124d1611503565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561255857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125b057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561267b5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262d906147b9565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561271f5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127c657600854811115612769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127609061484b565b60405180910390fd5b600a54612775836110c9565b826127809190613ff5565b11156127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b8906148b7565b60405180910390fd5b612964565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128695750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128b8576008548111156128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90614949565b60405180910390fd5b612963565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661296257600a54612915836110c9565b826129209190613ff5565b1115612961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612958906148b7565b60405180910390fd5b5b5b5b5b5b6000612971306110c9565b9050600060095482101590508080156129965750600b60029054906101000a900460ff165b80156129af5750600560149054906101000a900460ff16155b8015612a055750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a5b5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ab15750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612af5576001600560146101000a81548160ff021916908315150217905550612ad9613229565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bab5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bb557600090505b60008115612e2e57601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c1857506000601254115b15612ce557612c456064612c376012548861351090919063ffffffff16565b61352690919063ffffffff16565b905060125460145482612c589190613e2f565b612c629190613ea0565b60176000828254612c739190613ff5565b9250508190555060125460155482612c8b9190613e2f565b612c959190613ea0565b60186000828254612ca69190613ff5565b9250508190555060125460135482612cbe9190613e2f565b612cc89190613ea0565b60166000828254612cd99190613ff5565b92505081905550612e0a565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d4057506000600e54115b15612e0957612d6d6064612d5f600e548861351090919063ffffffff16565b61352690919063ffffffff16565b9050600e5460105482612d809190613e2f565b612d8a9190613ea0565b60176000828254612d9b9190613ff5565b92505081905550600e5460115482612db39190613e2f565b612dbd9190613ea0565b60186000828254612dce9190613ff5565b92505081905550600e54600f5482612de69190613e2f565b612df09190613ea0565b60166000828254612e019190613ff5565b925050819055505b5b6000811115612e1f57612e1e873083612faa565b5b8085612e2b9190614969565b94505b612e39878787612faa565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301090614603565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307f90614695565b60405180910390fd5b61309383838361353c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311090614a0f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131ac9190613ff5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516132109190613b0c565b60405180910390a3613223848484613541565b50505050565b6000613234306110c9565b9050600060185460165460175461324b9190613ff5565b6132559190613ff5565b90506000808314806132675750600082145b156132745750505061350e565b60146009546132839190613e2f565b83111561329c5760146009546132999190613e2f565b92505b6000600283601754866132af9190613e2f565b6132b99190613ea0565b6132c39190613ea0565b905060006132da828661354690919063ffffffff16565b905060004790506132ea8261355c565b60006132ff824761354690919063ffffffff16565b9050600061332a8761331c6016548561351090919063ffffffff16565b61352690919063ffffffff16565b90506000613355886133476018548661351090919063ffffffff16565b61352690919063ffffffff16565b905060008183856133669190614969565b6133709190614969565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516133d090614a60565b60006040518083038185875af1925050503d806000811461340d576040519150601f19603f3d011682016040523d82523d6000602084013e613412565b606091505b505080985050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161345e90614a60565b60006040518083038185875af1925050503d806000811461349b576040519150601f19603f3d011682016040523d82523d6000602084013e6134a0565b606091505b5050809850506000871180156134b65750600081115b15613503576134c58782613799565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826017546040516134fa93929190614a75565b60405180910390a15b505050505050505050505b565b6000818361351e9190613e2f565b905092915050565b600081836135349190613ea0565b905092915050565b505050565b505050565b600081836135549190614969565b905092915050565b6000600267ffffffffffffffff81111561357957613578614aac565b5b6040519080825280602002602001820160405280156135a75781602001602082028036833780820191505090505b50905030816000815181106135bf576135be614adb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613664573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136889190614b1f565b8160018151811061369c5761369b614adb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613701307f000000000000000000000000000000000000000000000000000000000000000084611fe3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613763959493929190614c45565b600060405180830381600087803b15801561377d57600080fd5b505af1158015613791573d6000803e3d6000fd5b505050505050565b6137c4307f000000000000000000000000000000000000000000000000000000000000000084611fe3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161384b96959493929190614c9f565b60606040518083038185885af1158015613869573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061388e9190614d15565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138cf5780820151818401526020810190506138b4565b60008484015250505050565b6000601f19601f8301169050919050565b60006138f782613895565b61390181856138a0565b93506139118185602086016138b1565b61391a816138db565b840191505092915050565b6000602082019050818103600083015261393f81846138ec565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139778261394c565b9050919050565b6139878161396c565b811461399257600080fd5b50565b6000813590506139a48161397e565b92915050565b6000819050919050565b6139bd816139aa565b81146139c857600080fd5b50565b6000813590506139da816139b4565b92915050565b600080604083850312156139f7576139f6613947565b5b6000613a0585828601613995565b9250506020613a16858286016139cb565b9150509250929050565b60008115159050919050565b613a3581613a20565b82525050565b6000602082019050613a506000830184613a2c565b92915050565b600060208284031215613a6c57613a6b613947565b5b6000613a7a84828501613995565b91505092915050565b6000819050919050565b6000613aa8613aa3613a9e8461394c565b613a83565b61394c565b9050919050565b6000613aba82613a8d565b9050919050565b6000613acc82613aaf565b9050919050565b613adc81613ac1565b82525050565b6000602082019050613af76000830184613ad3565b92915050565b613b06816139aa565b82525050565b6000602082019050613b216000830184613afd565b92915050565b600060208284031215613b3d57613b3c613947565b5b6000613b4b848285016139cb565b91505092915050565b600080600060608486031215613b6d57613b6c613947565b5b6000613b7b86828701613995565b9350506020613b8c86828701613995565b9250506040613b9d868287016139cb565b9150509250925092565b613bb08161396c565b82525050565b6000602082019050613bcb6000830184613ba7565b92915050565b600060ff82169050919050565b613be781613bd1565b82525050565b6000602082019050613c026000830184613bde565b92915050565b613c1181613a20565b8114613c1c57600080fd5b50565b600081359050613c2e81613c08565b92915050565b60008060408385031215613c4b57613c4a613947565b5b6000613c5985828601613995565b9250506020613c6a85828601613c1f565b9150509250929050565b600080600060608486031215613c8d57613c8c613947565b5b6000613c9b868287016139cb565b9350506020613cac868287016139cb565b9250506040613cbd868287016139cb565b9150509250925092565b600060208284031215613cdd57613cdc613947565b5b6000613ceb84828501613c1f565b91505092915050565b60008060408385031215613d0b57613d0a613947565b5b6000613d1985828601613995565b9250506020613d2a85828601613995565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7b57607f821691505b602082108103613d8e57613d8d613d34565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dca6020836138a0565b9150613dd582613d94565b602082019050919050565b60006020820190508181036000830152613df981613dbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e3a826139aa565b9150613e45836139aa565b9250828202613e53816139aa565b91508282048414831517613e6a57613e69613e00565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613eab826139aa565b9150613eb6836139aa565b925082613ec657613ec5613e71565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000613f2d602f836138a0565b9150613f3882613ed1565b604082019050919050565b60006020820190508181036000830152613f5c81613f20565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613fbf6028836138a0565b9150613fca82613f63565b604082019050919050565b60006020820190508181036000830152613fee81613fb2565b9050919050565b6000614000826139aa565b915061400b836139aa565b925082820190508082111561402357614022613e00565b5b92915050565b7f4d61782042757946656520313025000000000000000000000000000000000000600082015250565b600061405f600e836138a0565b915061406a82614029565b602082019050919050565b6000602082019050818103600083015261408e81614052565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006140f16039836138a0565b91506140fc82614095565b604082019050919050565b60006020820190508181036000830152614120816140e4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141836025836138a0565b915061418e82614127565b604082019050919050565b600060208201905081810360008301526141b281614176565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006141ef600f836138a0565b91506141fa826141b9565b602082019050919050565b6000602082019050818103600083015261421e816141e2565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006142816024836138a0565b915061428c82614225565b604082019050919050565b600060208201905081810360008301526142b081614274565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143136035836138a0565b915061431e826142b7565b604082019050919050565b6000602082019050818103600083015261434281614306565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006143a56034836138a0565b91506143b082614349565b604082019050919050565b600060208201905081810360008301526143d481614398565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144376026836138a0565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144c96024836138a0565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061455b6022836138a0565b9150614566826144ff565b604082019050919050565b6000602082019050818103600083015261458a8161454e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145ed6025836138a0565b91506145f882614591565b604082019050919050565b6000602082019050818103600083015261461c816145e0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061467f6023836138a0565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146eb6016836138a0565b91506146f6826146b5565b602082019050919050565b6000602082019050818103600083015261471a816146de565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006147a36049836138a0565b91506147ae82614721565b606082019050919050565b600060208201905081810360008301526147d281614796565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006148356035836138a0565b9150614840826147d9565b604082019050919050565b6000602082019050818103600083015261486481614828565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006148a16013836138a0565b91506148ac8261486b565b602082019050919050565b600060208201905081810360008301526148d081614894565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006149336036836138a0565b915061493e826148d7565b604082019050919050565b6000602082019050818103600083015261496281614926565b9050919050565b6000614974826139aa565b915061497f836139aa565b925082820390508181111561499757614996613e00565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006149f96026836138a0565b9150614a048261499d565b604082019050919050565b60006020820190508181036000830152614a28816149ec565b9050919050565b600081905092915050565b50565b6000614a4a600083614a2f565b9150614a5582614a3a565b600082019050919050565b6000614a6b82614a3d565b9150819050919050565b6000606082019050614a8a6000830186613afd565b614a976020830185613afd565b614aa46040830184613afd565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614b198161397e565b92915050565b600060208284031215614b3557614b34613947565b5b6000614b4384828501614b0a565b91505092915050565b6000819050919050565b6000614b71614b6c614b6784614b4c565b613a83565b6139aa565b9050919050565b614b8181614b56565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614bbc8161396c565b82525050565b6000614bce8383614bb3565b60208301905092915050565b6000602082019050919050565b6000614bf282614b87565b614bfc8185614b92565b9350614c0783614ba3565b8060005b83811015614c38578151614c1f8882614bc2565b9750614c2a83614bda565b925050600181019050614c0b565b5085935050505092915050565b600060a082019050614c5a6000830188613afd565b614c676020830187614b78565b8181036040830152614c798186614be7565b9050614c886060830185613ba7565b614c956080830184613afd565b9695505050505050565b600060c082019050614cb46000830189613ba7565b614cc16020830188613afd565b614cce6040830187614b78565b614cdb6060830186614b78565b614ce86080830185613ba7565b614cf560a0830184613afd565b979650505050505050565b600081519050614d0f816139b4565b92915050565b600080600060608486031215614d2e57614d2d613947565b5b6000614d3c86828701614d00565b9350506020614d4d86828701614d00565b9250506040614d5e86828701614d00565b915050925092509256fea2646970667358221220adcab5d6b3d582291ddd6c09fca6e17de303af784936a45719bf71ac5e72022e64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103035760003560e01c80638ea5220f11610190578063c17b5b8c116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bad578063f2fde38b14610bd8578063f637434214610c01578063f8b45b0514610c2c5761030a565b8063dd62ed3e14610b1a578063e2f4560514610b57578063e884f26014610b825761030a565b8063c17b5b8c14610a0a578063c18bc19514610a33578063c876d0b914610a5c578063c8c8ebe414610a87578063d257b34f14610ab2578063d85ba06314610aef5761030a565b80639fccce3211610149578063a9059cbb11610123578063a9059cbb1461093c578063b62496f514610979578063bbc0c742146109b6578063c0246668146109e15761030a565b80639fccce32146108a9578063a0d82dc5146108d4578063a457c2d7146108ff5761030a565b80638ea5220f146107ab57806392136913146107d6578063924de9b71461080157806395d89b411461082a5780639a7a23d6146108555780639c3b4fdc1461087e5761030a565b80634a62bb651161024f578063751039fc116102085780637bce5a04116101e25780637bce5a04146107155780638095d564146107405780638a8c523c146107695780638da5cb5b146107805761030a565b8063751039fc146106965780637571336a146106c157806375f0a874146106ea5761030a565b80634a62bb65146105845780634fbee193146105af5780636a486a8e146105ec5780636ddd17131461061757806370a0823114610642578063715018a61461067f5761030a565b80631f3fed8f116102bc57806327c8f8351161029657806327c8f835146104c6578063313ce567146104f1578063395093511461051c57806349bd5a5e146105595761030a565b80631f3fed8f14610435578063203e727e1461046057806323b872dd146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631a8145bb1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c57565b6040516103319190613925565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906139e0565b610ce9565b60405161036e9190613a3b565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613a56565b610d07565b6040516103ab9190613a3b565b60405180910390f35b3480156103c057600080fd5b506103c9610d27565b6040516103d69190613ae2565b60405180910390f35b3480156103eb57600080fd5b506103f4610d4b565b6040516104019190613b0c565b60405180910390f35b34801561041657600080fd5b5061041f610d55565b60405161042c9190613b0c565b60405180910390f35b34801561044157600080fd5b5061044a610d5b565b6040516104579190613b0c565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613b27565b610d61565b005b34801561049557600080fd5b506104b060048036038101906104ab9190613b54565b610e70565b6040516104bd9190613a3b565b60405180910390f35b3480156104d257600080fd5b506104db610f68565b6040516104e89190613bb6565b60405180910390f35b3480156104fd57600080fd5b50610506610f6e565b6040516105139190613bed565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e91906139e0565b610f77565b6040516105509190613a3b565b60405180910390f35b34801561056557600080fd5b5061056e611023565b60405161057b9190613bb6565b60405180910390f35b34801561059057600080fd5b50610599611047565b6040516105a69190613a3b565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613a56565b61105a565b6040516105e39190613a3b565b60405180910390f35b3480156105f857600080fd5b506106016110b0565b60405161060e9190613b0c565b60405180910390f35b34801561062357600080fd5b5061062c6110b6565b6040516106399190613a3b565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190613a56565b6110c9565b6040516106769190613b0c565b60405180910390f35b34801561068b57600080fd5b50610694611111565b005b3480156106a257600080fd5b506106ab611199565b6040516106b89190613a3b565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613c34565b611239565b005b3480156106f657600080fd5b506106ff611310565b60405161070c9190613bb6565b60405180910390f35b34801561072157600080fd5b5061072a611336565b6040516107379190613b0c565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613c74565b61133c565b005b34801561077557600080fd5b5061077e61144f565b005b34801561078c57600080fd5b50610795611503565b6040516107a29190613bb6565b60405180910390f35b3480156107b757600080fd5b506107c061152d565b6040516107cd9190613bb6565b60405180910390f35b3480156107e257600080fd5b506107eb611553565b6040516107f89190613b0c565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613cc7565b611559565b005b34801561083657600080fd5b5061083f6115f2565b60405161084c9190613925565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190613c34565b611684565b005b34801561088a57600080fd5b5061089361179c565b6040516108a09190613b0c565b60405180910390f35b3480156108b557600080fd5b506108be6117a2565b6040516108cb9190613b0c565b60405180910390f35b3480156108e057600080fd5b506108e96117a8565b6040516108f69190613b0c565b60405180910390f35b34801561090b57600080fd5b50610926600480360381019061092191906139e0565b6117ae565b6040516109339190613a3b565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e91906139e0565b611899565b6040516109709190613a3b565b60405180910390f35b34801561098557600080fd5b506109a0600480360381019061099b9190613a56565b6118b7565b6040516109ad9190613a3b565b60405180910390f35b3480156109c257600080fd5b506109cb6118d7565b6040516109d89190613a3b565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190613c34565b6118ea565b005b348015610a1657600080fd5b50610a316004803603810190610a2c9190613c74565b611a0f565b005b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613b27565b611b22565b005b348015610a6857600080fd5b50610a71611c31565b604051610a7e9190613a3b565b60405180910390f35b348015610a9357600080fd5b50610a9c611c44565b604051610aa99190613b0c565b60405180910390f35b348015610abe57600080fd5b50610ad96004803603810190610ad49190613b27565b611c4a565b604051610ae69190613a3b565b60405180910390f35b348015610afb57600080fd5b50610b04611d9f565b604051610b119190613b0c565b60405180910390f35b348015610b2657600080fd5b50610b416004803603810190610b3c9190613cf4565b611da5565b604051610b4e9190613b0c565b60405180910390f35b348015610b6357600080fd5b50610b6c611e2c565b604051610b799190613b0c565b60405180910390f35b348015610b8e57600080fd5b50610b97611e32565b604051610ba49190613a3b565b60405180910390f35b348015610bb957600080fd5b50610bc2611ed2565b604051610bcf9190613b0c565b60405180910390f35b348015610be457600080fd5b50610bff6004803603810190610bfa9190613a56565b611ed8565b005b348015610c0d57600080fd5b50610c16611fcf565b604051610c239190613b0c565b60405180910390f35b348015610c3857600080fd5b50610c41611fd5565b604051610c4e9190613b0c565b60405180910390f35b606060038054610c6690613d63565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9290613d63565b8015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b5050505050905090565b6000610cfd610cf6611fdb565b8484611fe3565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60175481565b60165481565b610d69611fdb565b73ffffffffffffffffffffffffffffffffffffffff16610d87611503565b73ffffffffffffffffffffffffffffffffffffffff1614610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613de0565b60405180910390fd5b670de0b6b3a76400006103e86005610df3610d4b565b610dfd9190613e2f565b610e079190613ea0565b610e119190613ea0565b811015610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90613f43565b60405180910390fd5b670de0b6b3a764000081610e679190613e2f565b60088190555050565b6000610e7d8484846121ac565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ec8611fdb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90613fd5565b60405180910390fd5b610f5c85610f54611fdb565b858403611fe3565b60019150509392505050565b61dead81565b60006012905090565b6000611019610f84611fdb565b848460016000610f92611fdb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110149190613ff5565b611fe3565b6001905092915050565b7f000000000000000000000000b9b824fda6c0c1afe105d892c24ca21264c77f0a81565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611119611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611137611503565b73ffffffffffffffffffffffffffffffffffffffff161461118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490613de0565b60405180910390fd5b6111976000612e43565b565b60006111a3611fdb565b73ffffffffffffffffffffffffffffffffffffffff166111c1611503565b73ffffffffffffffffffffffffffffffffffffffff1614611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e90613de0565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611241611fdb565b73ffffffffffffffffffffffffffffffffffffffff1661125f611503565b73ffffffffffffffffffffffffffffffffffffffff16146112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90613de0565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b611344611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611362611503565b73ffffffffffffffffffffffffffffffffffffffff16146113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90613de0565b60405180910390fd5b600a8183856113c79190613ff5565b6113d19190613ff5565b1115611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990614075565b60405180910390fd5b82600f819055508160108190555080601181905550601154601054600f5461143a9190613ff5565b6114449190613ff5565b600e81905550505050565b611457611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611475611503565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613de0565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b611561611fdb565b73ffffffffffffffffffffffffffffffffffffffff1661157f611503565b73ffffffffffffffffffffffffffffffffffffffff16146115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613de0565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461160190613d63565b80601f016020809104026020016040519081016040528092919081815260200182805461162d90613d63565b801561167a5780601f1061164f5761010080835404028352916020019161167a565b820191906000526020600020905b81548152906001019060200180831161165d57829003601f168201915b5050505050905090565b61168c611fdb565b73ffffffffffffffffffffffffffffffffffffffff166116aa611503565b73ffffffffffffffffffffffffffffffffffffffff1614611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613de0565b60405180910390fd5b7f000000000000000000000000b9b824fda6c0c1afe105d892c24ca21264c77f0a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590614107565b60405180910390fd5b6117988282612f09565b5050565b60115481565b60185481565b60155481565b600080600160006117bd611fdb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614199565b60405180910390fd5b61188e611885611fdb565b85858403611fe3565b600191505092915050565b60006118ad6118a6611fdb565b84846121ac565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6118f2611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611910611503565b73ffffffffffffffffffffffffffffffffffffffff1614611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90613de0565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a039190613a3b565b60405180910390a25050565b611a17611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611a35611503565b73ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290613de0565b60405180910390fd5b600a818385611a9a9190613ff5565b611aa49190613ff5565b1115611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90614205565b60405180910390fd5b826013819055508160148190555080601581905550601554601454601354611b0d9190613ff5565b611b179190613ff5565b601281905550505050565b611b2a611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611b48611503565b73ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590613de0565b60405180910390fd5b670de0b6b3a76400006103e86005611bb4610d4b565b611bbe9190613e2f565b611bc89190613ea0565b611bd29190613ea0565b811015611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90614297565b60405180910390fd5b670de0b6b3a764000081611c289190613e2f565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000611c54611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611c72611503565b73ffffffffffffffffffffffffffffffffffffffff1614611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf90613de0565b60405180910390fd5b620186a06001611cd6610d4b565b611ce09190613e2f565b611cea9190613ea0565b821015611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390614329565b60405180910390fd5b6103e86005611d39610d4b565b611d439190613e2f565b611d4d9190613ea0565b821115611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d86906143bb565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611e3c611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611e5a611503565b73ffffffffffffffffffffffffffffffffffffffff1614611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea790613de0565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60105481565b611ee0611fdb565b73ffffffffffffffffffffffffffffffffffffffff16611efe611503565b73ffffffffffffffffffffffffffffffffffffffff1614611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b90613de0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba9061444d565b60405180910390fd5b611fcc81612e43565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612049906144df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890614571565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161219f9190613b0c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290614603565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361228a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228190614695565b60405180910390fd5b600081036122a35761229e83836000612faa565b612e3e565b600b60009054906101000a900460ff1615612966576122c0611503565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561232e57506122fe611503565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123675750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123a1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123ba5750600560149054906101000a900460ff16155b1561296557600b60019054906101000a900460ff166124b457601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124745750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614701565b60405180910390fd5b5b600d60009054906101000a900460ff161561267c576124d1611503565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561255857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125b057507f000000000000000000000000b9b824fda6c0c1afe105d892c24ca21264c77f0a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561267b5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262d906147b9565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561271f5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127c657600854811115612769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127609061484b565b60405180910390fd5b600a54612775836110c9565b826127809190613ff5565b11156127c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b8906148b7565b60405180910390fd5b612964565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128695750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128b8576008548111156128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90614949565b60405180910390fd5b612963565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661296257600a54612915836110c9565b826129209190613ff5565b1115612961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612958906148b7565b60405180910390fd5b5b5b5b5b5b6000612971306110c9565b9050600060095482101590508080156129965750600b60029054906101000a900460ff165b80156129af5750600560149054906101000a900460ff16155b8015612a055750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a5b5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ab15750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612af5576001600560146101000a81548160ff021916908315150217905550612ad9613229565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bab5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bb557600090505b60008115612e2e57601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c1857506000601254115b15612ce557612c456064612c376012548861351090919063ffffffff16565b61352690919063ffffffff16565b905060125460145482612c589190613e2f565b612c629190613ea0565b60176000828254612c739190613ff5565b9250508190555060125460155482612c8b9190613e2f565b612c959190613ea0565b60186000828254612ca69190613ff5565b9250508190555060125460135482612cbe9190613e2f565b612cc89190613ea0565b60166000828254612cd99190613ff5565b92505081905550612e0a565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d4057506000600e54115b15612e0957612d6d6064612d5f600e548861351090919063ffffffff16565b61352690919063ffffffff16565b9050600e5460105482612d809190613e2f565b612d8a9190613ea0565b60176000828254612d9b9190613ff5565b92505081905550600e5460115482612db39190613e2f565b612dbd9190613ea0565b60186000828254612dce9190613ff5565b92505081905550600e54600f5482612de69190613e2f565b612df09190613ea0565b60166000828254612e019190613ff5565b925050819055505b5b6000811115612e1f57612e1e873083612faa565b5b8085612e2b9190614969565b94505b612e39878787612faa565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301090614603565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307f90614695565b60405180910390fd5b61309383838361353c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311090614a0f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131ac9190613ff5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516132109190613b0c565b60405180910390a3613223848484613541565b50505050565b6000613234306110c9565b9050600060185460165460175461324b9190613ff5565b6132559190613ff5565b90506000808314806132675750600082145b156132745750505061350e565b60146009546132839190613e2f565b83111561329c5760146009546132999190613e2f565b92505b6000600283601754866132af9190613e2f565b6132b99190613ea0565b6132c39190613ea0565b905060006132da828661354690919063ffffffff16565b905060004790506132ea8261355c565b60006132ff824761354690919063ffffffff16565b9050600061332a8761331c6016548561351090919063ffffffff16565b61352690919063ffffffff16565b90506000613355886133476018548661351090919063ffffffff16565b61352690919063ffffffff16565b905060008183856133669190614969565b6133709190614969565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516133d090614a60565b60006040518083038185875af1925050503d806000811461340d576040519150601f19603f3d011682016040523d82523d6000602084013e613412565b606091505b505080985050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161345e90614a60565b60006040518083038185875af1925050503d806000811461349b576040519150601f19603f3d011682016040523d82523d6000602084013e6134a0565b606091505b5050809850506000871180156134b65750600081115b15613503576134c58782613799565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826017546040516134fa93929190614a75565b60405180910390a15b505050505050505050505b565b6000818361351e9190613e2f565b905092915050565b600081836135349190613ea0565b905092915050565b505050565b505050565b600081836135549190614969565b905092915050565b6000600267ffffffffffffffff81111561357957613578614aac565b5b6040519080825280602002602001820160405280156135a75781602001602082028036833780820191505090505b50905030816000815181106135bf576135be614adb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613664573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136889190614b1f565b8160018151811061369c5761369b614adb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613701307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fe3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613763959493929190614c45565b600060405180830381600087803b15801561377d57600080fd5b505af1158015613791573d6000803e3d6000fd5b505050505050565b6137c4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fe3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161384b96959493929190614c9f565b60606040518083038185885af1158015613869573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061388e9190614d15565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138cf5780820151818401526020810190506138b4565b60008484015250505050565b6000601f19601f8301169050919050565b60006138f782613895565b61390181856138a0565b93506139118185602086016138b1565b61391a816138db565b840191505092915050565b6000602082019050818103600083015261393f81846138ec565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139778261394c565b9050919050565b6139878161396c565b811461399257600080fd5b50565b6000813590506139a48161397e565b92915050565b6000819050919050565b6139bd816139aa565b81146139c857600080fd5b50565b6000813590506139da816139b4565b92915050565b600080604083850312156139f7576139f6613947565b5b6000613a0585828601613995565b9250506020613a16858286016139cb565b9150509250929050565b60008115159050919050565b613a3581613a20565b82525050565b6000602082019050613a506000830184613a2c565b92915050565b600060208284031215613a6c57613a6b613947565b5b6000613a7a84828501613995565b91505092915050565b6000819050919050565b6000613aa8613aa3613a9e8461394c565b613a83565b61394c565b9050919050565b6000613aba82613a8d565b9050919050565b6000613acc82613aaf565b9050919050565b613adc81613ac1565b82525050565b6000602082019050613af76000830184613ad3565b92915050565b613b06816139aa565b82525050565b6000602082019050613b216000830184613afd565b92915050565b600060208284031215613b3d57613b3c613947565b5b6000613b4b848285016139cb565b91505092915050565b600080600060608486031215613b6d57613b6c613947565b5b6000613b7b86828701613995565b9350506020613b8c86828701613995565b9250506040613b9d868287016139cb565b9150509250925092565b613bb08161396c565b82525050565b6000602082019050613bcb6000830184613ba7565b92915050565b600060ff82169050919050565b613be781613bd1565b82525050565b6000602082019050613c026000830184613bde565b92915050565b613c1181613a20565b8114613c1c57600080fd5b50565b600081359050613c2e81613c08565b92915050565b60008060408385031215613c4b57613c4a613947565b5b6000613c5985828601613995565b9250506020613c6a85828601613c1f565b9150509250929050565b600080600060608486031215613c8d57613c8c613947565b5b6000613c9b868287016139cb565b9350506020613cac868287016139cb565b9250506040613cbd868287016139cb565b9150509250925092565b600060208284031215613cdd57613cdc613947565b5b6000613ceb84828501613c1f565b91505092915050565b60008060408385031215613d0b57613d0a613947565b5b6000613d1985828601613995565b9250506020613d2a85828601613995565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7b57607f821691505b602082108103613d8e57613d8d613d34565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dca6020836138a0565b9150613dd582613d94565b602082019050919050565b60006020820190508181036000830152613df981613dbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e3a826139aa565b9150613e45836139aa565b9250828202613e53816139aa565b91508282048414831517613e6a57613e69613e00565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613eab826139aa565b9150613eb6836139aa565b925082613ec657613ec5613e71565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000613f2d602f836138a0565b9150613f3882613ed1565b604082019050919050565b60006020820190508181036000830152613f5c81613f20565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613fbf6028836138a0565b9150613fca82613f63565b604082019050919050565b60006020820190508181036000830152613fee81613fb2565b9050919050565b6000614000826139aa565b915061400b836139aa565b925082820190508082111561402357614022613e00565b5b92915050565b7f4d61782042757946656520313025000000000000000000000000000000000000600082015250565b600061405f600e836138a0565b915061406a82614029565b602082019050919050565b6000602082019050818103600083015261408e81614052565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006140f16039836138a0565b91506140fc82614095565b604082019050919050565b60006020820190508181036000830152614120816140e4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141836025836138a0565b915061418e82614127565b604082019050919050565b600060208201905081810360008301526141b281614176565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006141ef600f836138a0565b91506141fa826141b9565b602082019050919050565b6000602082019050818103600083015261421e816141e2565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006142816024836138a0565b915061428c82614225565b604082019050919050565b600060208201905081810360008301526142b081614274565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143136035836138a0565b915061431e826142b7565b604082019050919050565b6000602082019050818103600083015261434281614306565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006143a56034836138a0565b91506143b082614349565b604082019050919050565b600060208201905081810360008301526143d481614398565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144376026836138a0565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006144c96024836138a0565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061455b6022836138a0565b9150614566826144ff565b604082019050919050565b6000602082019050818103600083015261458a8161454e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145ed6025836138a0565b91506145f882614591565b604082019050919050565b6000602082019050818103600083015261461c816145e0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061467f6023836138a0565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146eb6016836138a0565b91506146f6826146b5565b602082019050919050565b6000602082019050818103600083015261471a816146de565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006147a36049836138a0565b91506147ae82614721565b606082019050919050565b600060208201905081810360008301526147d281614796565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006148356035836138a0565b9150614840826147d9565b604082019050919050565b6000602082019050818103600083015261486481614828565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006148a16013836138a0565b91506148ac8261486b565b602082019050919050565b600060208201905081810360008301526148d081614894565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006149336036836138a0565b915061493e826148d7565b604082019050919050565b6000602082019050818103600083015261496281614926565b9050919050565b6000614974826139aa565b915061497f836139aa565b925082820390508181111561499757614996613e00565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006149f96026836138a0565b9150614a048261499d565b604082019050919050565b60006020820190508181036000830152614a28816149ec565b9050919050565b600081905092915050565b50565b6000614a4a600083614a2f565b9150614a5582614a3a565b600082019050919050565b6000614a6b82614a3d565b9150819050919050565b6000606082019050614a8a6000830186613afd565b614a976020830185613afd565b614aa46040830184613afd565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614b198161397e565b92915050565b600060208284031215614b3557614b34613947565b5b6000614b4384828501614b0a565b91505092915050565b6000819050919050565b6000614b71614b6c614b6784614b4c565b613a83565b6139aa565b9050919050565b614b8181614b56565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614bbc8161396c565b82525050565b6000614bce8383614bb3565b60208301905092915050565b6000602082019050919050565b6000614bf282614b87565b614bfc8185614b92565b9350614c0783614ba3565b8060005b83811015614c38578151614c1f8882614bc2565b9750614c2a83614bda565b925050600181019050614c0b565b5085935050505092915050565b600060a082019050614c5a6000830188613afd565b614c676020830187614b78565b8181036040830152614c798186614be7565b9050614c886060830185613ba7565b614c956080830184613afd565b9695505050505050565b600060c082019050614cb46000830189613ba7565b614cc16020830188613afd565b614cce6040830187614b78565b614cdb6060830186614b78565b614ce86080830185613ba7565b614cf560a0830184613afd565b979650505050505050565b600081519050614d0f816139b4565b92915050565b600080600060608486031215614d2e57614d2d613947565b5b6000614d3c86828701614d00565b9350506020614d4d86828701614d00565b9250506040614d5e86828701614d00565b915050925092509256fea2646970667358221220adcab5d6b3d582291ddd6c09fca6e17de303af784936a45719bf71ac5e72022e64736f6c63430008110033
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.