Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000,000 FDAO
Holders
473
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.801220453201821032 FDAOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FriendDAO
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-12 */ /** //telegram: https://t.me/frienddaoportal //website:Https://frienddaotoken.com //twitter: https://twitter.com/frienddaotoken * SPDX-License-Identifier: MIT */ pragma solidity 0.8.21; 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; } } } interface IERC20 { /** * @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); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Indicates a failed `decreaseAllowance` request. */ error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `requestedDecrease`. * * NOTE: Although this function is designed to avoid double spending with {approval}, * it can still be frontrunned, preventing any attempt of allowance reduction. */ function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); if (currentAllowance < requestedDecrease) { revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } unchecked { _approve(owner, spender, currentAllowance - requestedDecrease); } return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0). * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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 value) internal virtual { _approve(owner, spender, value, true); } /** * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true * using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IDexFactory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract FriendDAO is ERC20, Ownable { using SafeMath for uint256; IDexRouter public immutable dexRouter; address public immutable dexPair; // Swapback bool private duringContractSell; bool public contractSellEnabled = false; uint256 public minBalanceForContractSell; uint256 public maxAmountTokensForContractSell; //Anti-whale bool public tradingLimitsOn = true; bool public limitTxsPerBlock = true; uint256 public maxHold; uint256 public maxTx; mapping(address => uint256) private _addressLastTransfer; // to hold last Transfers temporarily during launch // Blacklist mapping(address => bool) public blacklisted; bool public canSetBlacklist = true; // Fee receivers address public treasuryWallet; address public projectWallet; bool public tokenLaunched = false; uint256 public buyFeesTotal; uint256 public treasuryFeeBuy; uint256 public projectFeeBuy; uint256 public sellFeesTotal; uint256 public treasuryFeeSell; uint256 public projectFeeSell; uint256 public tokensToSwapTreasury; uint256 public tokensToSwapProject; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private exemptFromFees; mapping(address => bool) public exemptFromMaxLimits; // 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 isAMMPair; event FeeWhitelist(address indexed account, bool isExcluded); event SetAMMPair(address indexed pair, bool indexed value); event treasuryWalletUpdated( address indexed newWallet, address indexed oldWallet ); event projectWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("FriendDAO", "FDAO") { IDexRouter _dexRouter = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); txLimitsWhitelist(address(_dexRouter), true); dexRouter = _dexRouter; dexPair = IDexFactory(_dexRouter.factory()) .createPair(address(this), _dexRouter.WETH()); txLimitsWhitelist(address(dexPair), true); _setAutomatedMarketMakerPair(address(dexPair), true); uint256 _treasuryFeeBuy = 2; uint256 _projectFeeBuy = 15; uint256 _treasuryFeeSell = 2; uint256 _projectFeeSell = 20; uint256 tokenSupply = 100000000000 * 1e18; maxTx = (tokenSupply * 20) / 1000; // 2% of total supply maxHold = (tokenSupply * 20) / 1000; // 2% of total supply minBalanceForContractSell = (tokenSupply * 5) / 10000; // 0.05% swapback trigger maxAmountTokensForContractSell = (tokenSupply * 1) / 100; // 1% max swapback treasuryFeeBuy = _treasuryFeeBuy; projectFeeBuy = _projectFeeBuy; buyFeesTotal = treasuryFeeBuy + projectFeeBuy; treasuryFeeSell = _treasuryFeeSell; projectFeeSell = _projectFeeSell; sellFeesTotal = treasuryFeeSell + projectFeeSell; treasuryWallet = address(msg.sender); projectWallet = address(msg.sender); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(treasuryWallet, true); txLimitsWhitelist(owner(), true); txLimitsWhitelist(address(this), true); txLimitsWhitelist(address(0xdead), true); txLimitsWhitelist(treasuryWallet, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, tokenSupply); } receive() external payable {} /// @notice Launches the token and enables trading. Irriversable. function startLaunch() external onlyOwner { tokenLaunched = true; contractSellEnabled = true; } /// @notice Removes the max wallet and max transaction limits function finishLaunchPeriod() external onlyOwner returns (bool) { tradingLimitsOn = false; return true; } /// @notice Disables the Same wallet block transfer delay function disableBlockTxLimit() external onlyOwner returns (bool) { limitTxsPerBlock = false; return true; } /// @notice Changes the minimum balance of tokens the contract must have before duringContractSell tokens for ETH. Base 100000, so 0.5% = 500. function updateContractSellMin( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= totalSupply() / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (500 * totalSupply()) / 100000, "Swap amount cannot be higher than 0.5% total supply." ); require( newAmount <= maxAmountTokensForContractSell, "Swap amount cannot be higher than maxAmountTokensForContractSell" ); minBalanceForContractSell = newAmount; return true; } /// @notice Changes the maximum amount of tokens the contract can swap for ETH. Base 10000, so 0.5% = 50. function updateMaxContractSellAmount( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= minBalanceForContractSell, "Swap amount cannot be lower than minBalanceForContractSell" ); maxAmountTokensForContractSell = newAmount; return true; } /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction /// @param newNum Base 1000, so 1% = 10 function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (newNum * totalSupply()) / 1000; } /// @notice Changes the maximum amount of tokens a wallet can hold /// @param newNum Base 1000, so 1% = 10 function updateMaxHoldAmount(uint256 newNum) external onlyOwner { require(newNum >= 5, "Cannot set maxHold lower than 0.5%"); maxHold = (newNum * totalSupply()) / 1000; } /// @notice Sets if a wallet is excluded from the max wallet and tx limits /// @param updAds The wallet to update /// @param isEx If the wallet is excluded or not function txLimitsWhitelist( address updAds, bool isEx ) public onlyOwner { exemptFromMaxLimits[updAds] = isEx; } /// @notice Sets if the contract can sell tokens /// @param enabled set to false to disable selling function setContractSellEnabled(bool enabled) external onlyOwner { contractSellEnabled = enabled; } /// @notice Sets the fees for buys /// @param _treasuryFee The fee for the treasury wallet /// @param _projectFee The fee for the dev wallet function setBuyFees( uint256 _treasuryFee, uint256 _projectFee ) external onlyOwner { treasuryFeeBuy = _treasuryFee; projectFeeBuy = _projectFee; buyFeesTotal = treasuryFeeBuy + projectFeeBuy; require(buyFeesTotal <= 12, "Must keep fees at 12% or less"); } /// @notice Sets the fees for sells /// @param _treasuryFee The fee for the treasury wallet /// @param _projectFee The fee for the dev wallet function setSellFees( uint256 _treasuryFee, uint256 _projectFee ) external onlyOwner { treasuryFeeSell = _treasuryFee; projectFeeSell = _projectFee; sellFeesTotal = treasuryFeeSell + projectFeeSell; require(sellFeesTotal <= 12, "Must keep fees at 12% or less"); } /// @notice Sets if a wallet is excluded from fees /// @param account The wallet to update /// @param excluded If the wallet is excluded or not function excludeFromFees(address account, bool excluded) public onlyOwner { exemptFromFees[account] = excluded; emit FeeWhitelist(account, excluded); } /// @notice Sets an address as a new liquidity pair. You probably dont want to do this. /// @param pair The new pair function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != dexPair, "The pair cannot be removed from isAMMPair" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { isAMMPair[pair] = value; emit SetAMMPair(pair, value); } /// @notice Sets a wallet as the new treasury wallet /// @param newTreasuryWallet The new treasury wallet function updateTreasuryWallet( address newTreasuryWallet ) external onlyOwner { emit treasuryWalletUpdated(newTreasuryWallet, treasuryWallet); treasuryWallet = newTreasuryWallet; } /// @notice Sets a wallet as the new dev wallet /// @param newWallet The new dev wallet function updateProjectWallet(address newWallet) external onlyOwner { emit projectWalletUpdated(newWallet, projectWallet); projectWallet = newWallet; } /// @notice Sets the blacklist status of multiple addresses /// @param addresses The addresses to update /// @param isBlacklisted If the addresses are blacklisted or not function updateBlacklistMultiple( address[] calldata addresses, bool isBlacklisted ) external onlyOwner { require(canSetBlacklist, "Blacklist is locked"); for (uint256 i = 0; i < addresses.length; i++) { blacklisted[addresses[i]] = isBlacklisted; } } /// @notice Removes the owner ability to change the blacklist function lockBlacklist() external onlyOwner { canSetBlacklist = false; } function isExcludedFromFees(address account) public view returns (bool) { return exemptFromFees[account]; } function _update( address from, address to, uint256 amount ) internal override { if (amount == 0) { super._update(from, to, 0); return; } if (tradingLimitsOn) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !duringContractSell ) { if (!tokenLaunched) { require( exemptFromFees[from] || exemptFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (limitTxsPerBlock) { if ( to != owner() && to != address(dexRouter) && to != address(dexPair) ) { require( _addressLastTransfer[tx.origin] < block.number, "_update:: Transfer Delay enabled. Only one purchase per block allowed." ); _addressLastTransfer[tx.origin] = block.number; } } //when buy if (isAMMPair[from] && !exemptFromMaxLimits[to]) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxHold, "Max wallet exceeded" ); } //when sell else if ( isAMMPair[to] && !exemptFromMaxLimits[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!exemptFromMaxLimits[to]) { require( amount + balanceOf(to) <= maxHold, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= minBalanceForContractSell; if ( canSwap && contractSellEnabled && !duringContractSell && !isAMMPair[from] && !exemptFromFees[from] && !exemptFromFees[to] ) { duringContractSell = true; swapBack(); duringContractSell = false; } bool takeFee = !duringContractSell; // if any account belongs to _isExcludedFromFee account then remove the fee if (exemptFromFees[from] || exemptFromFees[to]) { takeFee = false; } if (!exemptFromFees[from] || !exemptFromFees[to]) { require(!blacklisted[from], "Address is blacklisted"); } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (isAMMPair[to] && sellFeesTotal > 0) { fees = amount.mul(sellFeesTotal).div(100); tokensToSwapProject += (fees * projectFeeSell) / sellFeesTotal; tokensToSwapTreasury += (fees * treasuryFeeSell) / sellFeesTotal; } // on buy else if (isAMMPair[from] && buyFeesTotal > 0) { fees = amount.mul(buyFeesTotal).div(100); tokensToSwapProject += (fees * projectFeeBuy) / buyFeesTotal; tokensToSwapTreasury += (fees * treasuryFeeBuy) / buyFeesTotal; } if (fees > 0) { super._update(from, address(this), fees); } amount -= fees; } super._update(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] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensToSwapTreasury + tokensToSwapProject; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > maxAmountTokensForContractSell) { contractBalance = maxAmountTokensForContractSell; } uint256 initialETHBalance = address(this).balance; swapTokensForEth(contractBalance); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForProject = ethBalance.mul(tokensToSwapProject).div(totalTokensToSwap); tokensToSwapTreasury = 0; tokensToSwapProject = 0; (success, ) = address(projectWallet).call{value: ethForProject}(""); (success, ) = address(treasuryWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"FeeWhitelist","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":"SetAMMPair","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"projectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeesTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canSetBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractSellEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableBlockTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"exemptFromMaxLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finishLaunchPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAMMPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitTxsPerBlock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxAmountTokensForContractSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBalanceForContractSell","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":"projectFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeesTotal","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":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setContractSellEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensToSwapProject","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensToSwapTreasury","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":"tradingLimitsOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"treasuryFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"txLimitsWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"updateBlacklistMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateContractSellMin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxContractSellAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxHoldAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805461ffff1916610101179055600d805460ff19166001179055600e805460ff60a01b1916905534801562000046575f80fd5b5060405180604001604052806009815260200168467269656e6444414f60b81b815250604051806040016040528060048152602001634644414f60e01b8152508160039081620000979190620013f2565b506004620000a68282620013f2565b505050620000c3620000bd6200041c60201b60201c565b62000420565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e581600162000471565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001549190620014ba565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c69190620014ba565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000211573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002379190620014ba565b6001600160a01b031660a08190526200025290600162000471565b60a05162000262906001620004e9565b6002600f8160146c01431e0fae6d7217caa00000006103e8620002868284620014fd565b62000292919062001517565b600a556103e8620002a5826014620014fd565b620002b1919062001517565b600955612710620002c4826005620014fd565b620002d0919062001517565b6006556064620002e2826001620014fd565b620002ee919062001517565b6007556010859055601184905562000307848662001537565b600f556013839055601482905562000320828462001537565b601255600d8054610100600160a81b03191633610100810291909117909155600e80546001600160a01b031916909117905562000371620003696005546001600160a01b031690565b60016200053c565b6200037e3060016200053c565b6200038d61dead60016200053c565b600d54620003ab9061010090046001600160a01b031660016200053c565b620003ca620003c26005546001600160a01b031690565b600162000471565b620003d730600162000471565b620003e661dead600162000471565b600d54620004049061010090046001600160a01b0316600162000471565b620004103382620005e4565b505050505050620015e8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004bf5760405162461bcd60e51b815260206004820181905260248201525f8051602062003f0f83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b6005546001600160a01b03163314620005865760405162461bcd60e51b815260206004820181905260248201525f8051602062003f0f8339815191526044820152606401620004b6565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f781d26db56cdaee11e2fce438cd1461fa45f059fcd5f02aa8e6b1e5716d8d465910160405180910390a25050565b6001600160a01b0382166200060f5760405163ec442f0560e01b81525f6004820152602401620004b6565b6200061c5f838362000620565b5050565b805f036200063a576200063583835f62000e62565b505050565b60085460ff161562000ac0576005546001600160a01b038481169116148015906200067357506005546001600160a01b03838116911614155b80156200068857506001600160a01b03821615155b8015620006a057506001600160a01b03821661dead14155b8015620006b75750600554600160a01b900460ff16155b1562000ac057600e54600160a01b900460ff166200075b576001600160a01b0383165f9081526017602052604090205460ff16806200070d57506001600160a01b0382165f9081526017602052604090205460ff165b6200075b5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401620004b6565b600854610100900460ff16156200086d576005546001600160a01b038381169116148015906200079f57506080516001600160a01b0316826001600160a01b031614155b8015620007c0575060a0516001600160a01b0316826001600160a01b031614155b156200086d57325f908152600b602052604090205443116200085b5760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401620004b6565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526019602052604090205460ff168015620008ad57506001600160a01b0382165f9081526018602052604090205460ff16155b156200098957600a54811115620009165760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401620004b6565b6009546001600160a01b0383165f908152602081905260409020546200093d908362001537565b1115620009835760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004b6565b62000ac0565b6001600160a01b0382165f9081526019602052604090205460ff168015620009c957506001600160a01b0383165f9081526018602052604090205460ff16155b1562000a3357600a54811115620009835760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401620004b6565b6001600160a01b0382165f9081526018602052604090205460ff1662000ac0576009546001600160a01b0383165f9081526020819052604090205462000a7a908362001537565b111562000ac05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004b6565b305f908152602081905260409020546006548110801590819062000aed5750600554600160a81b900460ff165b801562000b045750600554600160a01b900460ff16155b801562000b2957506001600160a01b0385165f9081526019602052604090205460ff16155b801562000b4e57506001600160a01b0385165f9081526017602052604090205460ff16155b801562000b7357506001600160a01b0384165f9081526017602052604090205460ff16155b1562000ba4576005805460ff60a01b1916600160a01b17905562000b9662000f91565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b90920482161591168062000bf157506001600160a01b0385165f9081526017602052604090205460ff165b1562000bfa57505f5b6001600160a01b0386165f9081526017602052604090205460ff16158062000c3a57506001600160a01b0385165f9081526017602052604090205460ff16155b1562000caa576001600160a01b0386165f908152600c602052604090205460ff161562000caa5760405162461bcd60e51b815260206004820152601660248201527f4164647265737320697320626c61636b6c6973746564000000000000000000006044820152606401620004b6565b5f811562000e4c576001600160a01b0386165f9081526019602052604090205460ff16801562000cdb57505f601254115b1562000d745760125462000d009060649062000cf9908890620010d8565b90620010ee565b90506012546014548262000d159190620014fd565b62000d21919062001517565b60165f82825462000d33919062001537565b909155505060125460135462000d4a9083620014fd565b62000d56919062001517565b60155f82825462000d68919062001537565b9091555062000e299050565b6001600160a01b0387165f9081526019602052604090205460ff16801562000d9d57505f600f54115b1562000e2957600f5462000dbb9060649062000cf9908890620010d8565b9050600f546011548262000dd09190620014fd565b62000ddc919062001517565b60165f82825462000dee919062001537565b9091555050600f5460105462000e059083620014fd565b62000e11919062001517565b60155f82825462000e23919062001537565b90915550505b801562000e3d5762000e3d87308362000e62565b62000e4981866200154d565b94505b62000e5987878762000e62565b50505050505050565b6001600160a01b03831662000e90578060025f82825462000e84919062001537565b9091555062000f029050565b6001600160a01b0383165f908152602081905260409020548181101562000ee45760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620004b6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821662000f205760028054829003905562000f3e565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000f8491815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f60165460155462000fb5919062001537565b90505f82158062000fc4575081155b1562000fcf57505050565b60075483111562000fe05760075492505b4762000fec84620010fb565b5f62000ff947836200126c565b90505f620010188562000cf960165485620010d860201b90919060201c565b5f60158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d805f81146200106f576040519150601f19603f3d011682016040523d82523d5f602084013e62001074565b606091505b5050600d5460405191955061010090046001600160a01b03169047905f81818185875af1925050503d805f8114620010c8576040519150601f19603f3d011682016040523d82523d5f602084013e620010cd565b606091505b505050505050505050565b5f620010e58284620014fd565b90505b92915050565b5f620010e5828462001517565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811062001131576200113162001563565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001190573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620011b69190620014ba565b81600181518110620011cc57620011cc62001563565b60200260200101906001600160a01b031690816001600160a01b0316815250506200120130608051846200127960201b60201c565b6080516001600160a01b031663791ac947835f8430426040518663ffffffff1660e01b81526004016200123995949392919062001577565b5f604051808303815f87803b15801562001251575f80fd5b505af115801562001264573d5f803e3d5ffd5b505050505050565b5f620010e582846200154d565b6200063583838360016001600160a01b038416620012ad5760405163e602df0560e01b81525f6004820152602401620004b6565b6001600160a01b038316620012d857604051634a1406b160e11b81525f6004820152602401620004b6565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156200135557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200134c91815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200138457607f821691505b602082108103620013a357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000635575f81815260208120601f850160051c81016020861015620013d15750805b601f850160051c820191505b818110156200126457828155600101620013dd565b81516001600160401b038111156200140e576200140e6200135b565b62001426816200141f84546200136f565b84620013a9565b602080601f8311600181146200145c575f8415620014445750858301515b5f19600386901b1c1916600185901b17855562001264565b5f85815260208120601f198616915b828110156200148c578886015182559484019460019091019084016200146b565b5085821015620014aa57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620014cb575f80fd5b81516001600160a01b0381168114620014e2575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620010e857620010e8620014e9565b5f826200153257634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620010e857620010e8620014e9565b81810381811115620010e857620010e8620014e9565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015620015c75784516001600160a01b031683529383019391830191600101620015a0565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a0516128db620016345f395f81816109cb015281816110900152611a2401525f81816103fd015281816119e60152818161237e01528181612435015261247101526128db5ff3fe60806040526004361061035e575f3560e01c8063830804c9116101bd578063b6332002116100f2578063dbac26e911610092578063de78e78a1161006d578063de78e78a1461099a578063f242ab41146109ba578063f2fde38b146109ed578063f799b2c814610a0c575f80fd5b8063dbac26e91461092e578063dcbc1b561461095c578063dd62ed3e1461097b575f80fd5b8063c0246668116100cd578063c0246668146108c7578063c463b995146108e6578063d6bb9612146108fa578063d6dc84cc14610919575f80fd5b8063b63320021461087a578063bbd2f21a14610893578063beb08ab9146108a8575f80fd5b80639a7a23d61161015d578063a457c2d711610138578063a457c2d7146107ef578063a9059cbb1461080e578063b0249cc61461082d578063b2d8f2081461085b575f80fd5b80639a7a23d61461079c5780639b77884d146107bb5780639fd8234e146107d0575f80fd5b80638fbef097116101985780638fbef0971461073f5780639125ff841461075e57806395d89b41146107735780639a6c614e14610787575f80fd5b8063830804c9146106ee5780638d1942a7146107035780638da5cb5b14610722575f80fd5b806343278c611161029357806370a0823111610233578063727fd3581161020e578063727fd358146106905780637437681e146106a55780637e7e5acc146106ba578063809d458d146106cf575f80fd5b806370a0823114610629578063715018a61461065d5780637192762814610671575f80fd5b80634fbee1931161026e5780634fbee193146105a657806359a945e9146105dd57806365954704146105f15780636c53c8f714610610575f80fd5b806343278c611461054d5780634626402b1461056257806348b98ef514610586575f80fd5b806318160ddd116102fe57806323b872dd116102d957806323b872dd146104d5578063313ce567146104f4578063395093511461050f5780633b7b6a101461052e575f80fd5b806318160ddd146104845780631a2953fe14610498578063203e727e146104b6575f80fd5b806306fdde031161033957806306fdde03146103cb5780630758d924146103ec578063095ea7b31461043757806311aa0ee514610456575f80fd5b806303a88e801461036957806303a928eb1461039257806304019c14146103a8575f80fd5b3661036557005b5f80fd5b348015610374575f80fd5b5061037d610a21565b60405190151581526020015b60405180910390f35b34801561039d575f80fd5b506103a6610a67565b005b3480156103b3575f80fd5b506103bd60165481565b604051908152602001610389565b3480156103d6575f80fd5b506103df610a9d565b60405161038991906124ea565b3480156103f7575f80fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610389565b348015610442575f80fd5b5061037d610451366004612549565b610b2d565b348015610461575f80fd5b5061037d610470366004612573565b60186020525f908152604090205460ff1681565b34801561048f575f80fd5b506002546103bd565b3480156104a3575f80fd5b5060085461037d90610100900460ff1681565b3480156104c1575f80fd5b506103a66104d036600461258e565b610b46565b3480156104e0575f80fd5b5061037d6104ef3660046125a5565b610be7565b3480156104ff575f80fd5b5060405160128152602001610389565b34801561051a575f80fd5b5061037d610529366004612549565b610c0a565b348015610539575f80fd5b506103a661054836600461258e565b610c2b565b348015610558575f80fd5b506103bd60065481565b34801561056d575f80fd5b50600d5461041f9061010090046001600160a01b031681565b348015610591575f80fd5b5060055461037d90600160a81b900460ff1681565b3480156105b1575f80fd5b5061037d6105c0366004612573565b6001600160a01b03165f9081526017602052604090205460ff1690565b3480156105e8575f80fd5b506103a6610cd7565b3480156105fc575f80fd5b506103a661060b3660046125f2565b610d29565b34801561061b575f80fd5b50600d5461037d9060ff1681565b348015610634575f80fd5b506103bd610643366004612573565b6001600160a01b03165f9081526020819052604090205490565b348015610668575f80fd5b506103a6610d71565b34801561067c575f80fd5b506103a661068b366004612573565b610da6565b34801561069b575f80fd5b506103bd60155481565b3480156106b0575f80fd5b506103bd600a5481565b3480156106c5575f80fd5b506103bd600f5481565b3480156106da575f80fd5b506103a66106e9366004612573565b610e2c565b3480156106f9575f80fd5b506103bd60075481565b34801561070e575f80fd5b5061037d61071d36600461258e565b610ebd565b34801561072d575f80fd5b506005546001600160a01b031661041f565b34801561074a575f80fd5b506103a661075936600461260b565b610f6f565b348015610769575f80fd5b506103bd60135481565b34801561077e575f80fd5b506103df611055565b348015610792575f80fd5b506103bd60095481565b3480156107a7575f80fd5b506103a66107b6366004612688565b611064565b3480156107c6575f80fd5b506103bd60115481565b3480156107db575f80fd5b506103a66107ea3660046126bb565b61112f565b3480156107fa575f80fd5b5061037d610809366004612549565b6111c2565b348015610819575f80fd5b5061037d610828366004612549565b611218565b348015610838575f80fd5b5061037d610847366004612573565b60196020525f908152604090205460ff1681565b348015610866575f80fd5b506103a66108753660046126bb565b611225565b348015610885575f80fd5b5060085461037d9060ff1681565b34801561089e575f80fd5b506103bd60105481565b3480156108b3575f80fd5b50600e5461041f906001600160a01b031681565b3480156108d2575f80fd5b506103a66108e1366004612688565b6112b8565b3480156108f1575f80fd5b5061037d611340565b348015610905575f80fd5b5061037d61091436600461258e565b61137c565b348015610924575f80fd5b506103bd60125481565b348015610939575f80fd5b5061037d610948366004612573565b600c6020525f908152604090205460ff1681565b348015610967575f80fd5b506103a6610976366004612688565b61153e565b348015610986575f80fd5b506103bd6109953660046126db565b611592565b3480156109a5575f80fd5b50600e5461037d90600160a01b900460ff1681565b3480156109c5575f80fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156109f8575f80fd5b506103a6610a07366004612573565b6115bc565b348015610a17575f80fd5b506103bd60145481565b6005545f906001600160a01b03163314610a565760405162461bcd60e51b8152600401610a4d90612712565b60405180910390fd5b506008805461ff0019169055600190565b6005546001600160a01b03163314610a915760405162461bcd60e51b8152600401610a4d90612712565b600d805460ff19169055565b606060038054610aac90612747565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad890612747565b8015610b235780601f10610afa57610100808354040283529160200191610b23565b820191905f5260205f20905b815481529060010190602001808311610b0657829003601f168201915b5050505050905090565b5f33610b3a818585611657565b60019150505b92915050565b6005546001600160a01b03163314610b705760405162461bcd60e51b8152600401610a4d90612712565b6002811015610bc15760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610a4d565b6103e8610bcd60025490565b610bd79083612793565b610be191906127aa565b600a5550565b5f33610bf4858285611669565b610bff8585856116c6565b506001949350505050565b5f33610b3a818585610c1c8383611592565b610c2691906127c9565b611657565b6005546001600160a01b03163314610c555760405162461bcd60e51b8152600401610a4d90612712565b6005811015610cb15760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178486f6c64206c6f776572207468616e20302e604482015261352560f01b6064820152608401610a4d565b6103e8610cbd60025490565b610cc79083612793565b610cd191906127aa565b60095550565b6005546001600160a01b03163314610d015760405162461bcd60e51b8152600401610a4d90612712565b600e805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610d535760405162461bcd60e51b8152600401610a4d90612712565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314610d9b5760405162461bcd60e51b8152600401610a4d90612712565b610da45f611723565b565b6005546001600160a01b03163314610dd05760405162461bcd60e51b8152600401610a4d90612712565b600e546040516001600160a01b03918216918316907fd0bdd1bf92049384d44f81d258f51a39b26cfc1d256348efb3b109fd8db72711905f90a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610a4d90612712565b600d546040516001600160a01b036101009092048216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f635905f90a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005545f906001600160a01b03163314610ee95760405162461bcd60e51b8152600401610a4d90612712565b600654821015610f615760405162461bcd60e51b815260206004820152603a60248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f206d696e42616c616e6365466f72436f6e747261637453656c6c0000000000006064820152608401610a4d565b50600781905560015b919050565b6005546001600160a01b03163314610f995760405162461bcd60e51b8152600401610a4d90612712565b600d5460ff16610fe15760405162461bcd60e51b8152602060048201526013602482015272109b1858dadb1a5cdd081a5cc81b1bd8dad959606a1b6044820152606401610a4d565b5f5b8281101561104f5781600c5f868685818110611001576110016127dc565b90506020020160208101906110169190612573565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580611047816127f0565b915050610fe3565b50505050565b606060048054610aac90612747565b6005546001600160a01b0316331461108e5760405162461bcd60e51b8152600401610a4d90612712565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036111215760405162461bcd60e51b815260206004820152602960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526834b9a0a6a6a830b4b960b91b6064820152608401610a4d565b61112b8282611774565b5050565b6005546001600160a01b031633146111595760405162461bcd60e51b8152600401610a4d90612712565b6013829055601481905561116d81836127c9565b6012819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b5f33816111cf8286611592565b90508381101561120b57604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a4d565b610bff8286868403611657565b5f33610b3a8185856116c6565b6005546001600160a01b0316331461124f5760405162461bcd60e51b8152600401610a4d90612712565b6010829055601181905561126381836127c9565b600f819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b6005546001600160a01b031633146112e25760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f781d26db56cdaee11e2fce438cd1461fa45f059fcd5f02aa8e6b1e5716d8d465910160405180910390a25050565b6005545f906001600160a01b0316331461136c5760405162461bcd60e51b8152600401610a4d90612712565b506008805460ff19169055600190565b6005545f906001600160a01b031633146113a85760405162461bcd60e51b8152600401610a4d90612712565b620186a06113b560025490565b6113bf91906127aa565b82101561142c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a4d565b620186a061143960025490565b611445906101f4612793565b61144f91906127aa565b8211156114bb5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a4d565b600754821115611535576040805162461bcd60e51b81526020600482015260248101919091527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e206d6178416d6f756e74546f6b656e73466f72436f6e747261637453656c6c6064820152608401610a4d565b50600655600190565b6005546001600160a01b031633146115685760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146115e65760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03811661164b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4d565b61165481611723565b50565b61166483838360016117c7565b505050565b5f6116748484611592565b90505f19811461104f57818110156116b857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a4d565b61104f84848484035f6117c7565b6001600160a01b0383166116ef57604051634b637e8f60e11b81525f6004820152602401610a4d565b6001600160a01b0382166117185760405163ec442f0560e01b81525f6004820152602401610a4d565b611664838383611899565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b6001600160a01b0384166117f05760405163e602df0560e01b81525f6004820152602401610a4d565b6001600160a01b03831661181957604051634a1406b160e11b81525f6004820152602401610a4d565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561104f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161188b91815260200190565b60405180910390a350505050565b805f036118ab5761166483835f6120af565b60085460ff1615611d44576005546001600160a01b038481169116148015906118e257506005546001600160a01b03838116911614155b80156118f657506001600160a01b03821615155b801561190d57506001600160a01b03821661dead14155b80156119235750600554600160a01b900460ff16155b15611d4457600e54600160a01b900460ff166119bb576001600160a01b0383165f9081526017602052604090205460ff168061197657506001600160a01b0382165f9081526017602052604090205460ff165b6119bb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a4d565b600854610100900460ff1615611b03576005546001600160a01b03838116911614801590611a1b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611a5957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611b0357325f908152600b60205260409020544311611af15760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a4d565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526019602052604090205460ff168015611b4257506001600160a01b0382165f9081526018602052604090205460ff16155b15611c1657600a54811115611ba85760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610a4d565b6009546001600160a01b0383165f90815260208190526040902054611bcd90836127c9565b1115611c115760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b611d44565b6001600160a01b0382165f9081526019602052604090205460ff168015611c5557506001600160a01b0383165f9081526018602052604090205460ff16155b15611cbc57600a54811115611c115760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610a4d565b6001600160a01b0382165f9081526018602052604090205460ff16611d44576009546001600160a01b0383165f90815260208190526040902054611d0090836127c9565b1115611d445760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b305f9081526020819052604090205460065481108015908190611d705750600554600160a81b900460ff165b8015611d865750600554600160a01b900460ff16155b8015611daa57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611dce57506001600160a01b0385165f9081526017602052604090205460ff16155b8015611df257506001600160a01b0384165f9081526017602052604090205460ff16155b15611e20576005805460ff60a01b1916600160a01b179055611e126121d5565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b909204821615911680611e6c57506001600160a01b0385165f9081526017602052604090205460ff165b15611e7457505f5b6001600160a01b0386165f9081526017602052604090205460ff161580611eb357506001600160a01b0385165f9081526017602052604090205460ff16155b15611f19576001600160a01b0386165f908152600c602052604090205460ff1615611f195760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dadb1a5cdd195960521b6044820152606401610a4d565b5f811561209b576001600160a01b0386165f9081526019602052604090205460ff168015611f4857505f601254115b15611fd457611f6d6064611f676012548861230c90919063ffffffff16565b9061231e565b905060125460145482611f809190612793565b611f8a91906127aa565b60165f828254611f9a91906127c9565b9091555050601254601354611faf9083612793565b611fb991906127aa565b60155f828254611fc991906127c9565b9091555061207d9050565b6001600160a01b0387165f9081526019602052604090205460ff168015611ffc57505f600f54115b1561207d5761201b6064611f67600f548861230c90919063ffffffff16565b9050600f546011548261202e9190612793565b61203891906127aa565b60165f82825461204891906127c9565b9091555050600f5460105461205d9083612793565b61206791906127aa565b60155f82825461207791906127c9565b90915550505b801561208e5761208e8730836120af565b6120988186612808565b94505b6120a68787876120af565b50505050505050565b6001600160a01b0383166120d9578060025f8282546120ce91906127c9565b909155506121499050565b6001600160a01b0383165f908152602081905260409020548181101561212b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a4d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661216557600280548290039055612183565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121c891815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f6016546015546121f791906127c9565b90505f821580612205575081155b1561220f57505050565b60075483111561221f5760075492505b4761222984612329565b5f61223447836124df565b90505f61225085611f676016548561230c90919063ffffffff16565b5f60158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d805f81146122a5576040519150601f19603f3d011682016040523d82523d5f602084013e6122aa565b606091505b5050600d5460405191955061010090046001600160a01b03169047905f81818185875af1925050503d805f81146122fc576040519150601f19603f3d011682016040523d82523d5f602084013e612301565b606091505b505050505050505050565b5f6123178284612793565b9392505050565b5f61231782846127aa565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061235c5761235c6127dc565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123fc919061281b565b8160018151811061240f5761240f6127dc565b60200260200101906001600160a01b031690816001600160a01b03168152505061245a307f000000000000000000000000000000000000000000000000000000000000000084611657565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906124ae9085905f90869030904290600401612836565b5f604051808303815f87803b1580156124c5575f80fd5b505af11580156124d7573d5f803e3d5ffd5b505050505050565b5f6123178284612808565b5f6020808352835180828501525f5b81811015612515578581018301518582016040015282016124f9565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611654575f80fd5b5f806040838503121561255a575f80fd5b823561256581612535565b946020939093013593505050565b5f60208284031215612583575f80fd5b813561231781612535565b5f6020828403121561259e575f80fd5b5035919050565b5f805f606084860312156125b7575f80fd5b83356125c281612535565b925060208401356125d281612535565b929592945050506040919091013590565b80358015158114610f6a575f80fd5b5f60208284031215612602575f80fd5b612317826125e3565b5f805f6040848603121561261d575f80fd5b833567ffffffffffffffff80821115612634575f80fd5b818601915086601f830112612647575f80fd5b813581811115612655575f80fd5b8760208260051b8501011115612669575f80fd5b60209283019550935061267f91860190506125e3565b90509250925092565b5f8060408385031215612699575f80fd5b82356126a481612535565b91506126b2602084016125e3565b90509250929050565b5f80604083850312156126cc575f80fd5b50508035926020909101359150565b5f80604083850312156126ec575f80fd5b82356126f781612535565b9150602083013561270781612535565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061275b57607f821691505b60208210810361277957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b4057610b4061277f565b5f826127c457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b4057610b4061277f565b634e487b7160e01b5f52603260045260245ffd5b5f600182016128015761280161277f565b5060010190565b81810381811115610b4057610b4061277f565b5f6020828403121561282b575f80fd5b815161231781612535565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156128845784516001600160a01b03168352938301939183019160010161285f565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122057bfb25e0c5109500766349c597593fe33f875e0c14bcafd0912f51ec73ad07764736f6c634300081500334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061035e575f3560e01c8063830804c9116101bd578063b6332002116100f2578063dbac26e911610092578063de78e78a1161006d578063de78e78a1461099a578063f242ab41146109ba578063f2fde38b146109ed578063f799b2c814610a0c575f80fd5b8063dbac26e91461092e578063dcbc1b561461095c578063dd62ed3e1461097b575f80fd5b8063c0246668116100cd578063c0246668146108c7578063c463b995146108e6578063d6bb9612146108fa578063d6dc84cc14610919575f80fd5b8063b63320021461087a578063bbd2f21a14610893578063beb08ab9146108a8575f80fd5b80639a7a23d61161015d578063a457c2d711610138578063a457c2d7146107ef578063a9059cbb1461080e578063b0249cc61461082d578063b2d8f2081461085b575f80fd5b80639a7a23d61461079c5780639b77884d146107bb5780639fd8234e146107d0575f80fd5b80638fbef097116101985780638fbef0971461073f5780639125ff841461075e57806395d89b41146107735780639a6c614e14610787575f80fd5b8063830804c9146106ee5780638d1942a7146107035780638da5cb5b14610722575f80fd5b806343278c611161029357806370a0823111610233578063727fd3581161020e578063727fd358146106905780637437681e146106a55780637e7e5acc146106ba578063809d458d146106cf575f80fd5b806370a0823114610629578063715018a61461065d5780637192762814610671575f80fd5b80634fbee1931161026e5780634fbee193146105a657806359a945e9146105dd57806365954704146105f15780636c53c8f714610610575f80fd5b806343278c611461054d5780634626402b1461056257806348b98ef514610586575f80fd5b806318160ddd116102fe57806323b872dd116102d957806323b872dd146104d5578063313ce567146104f4578063395093511461050f5780633b7b6a101461052e575f80fd5b806318160ddd146104845780631a2953fe14610498578063203e727e146104b6575f80fd5b806306fdde031161033957806306fdde03146103cb5780630758d924146103ec578063095ea7b31461043757806311aa0ee514610456575f80fd5b806303a88e801461036957806303a928eb1461039257806304019c14146103a8575f80fd5b3661036557005b5f80fd5b348015610374575f80fd5b5061037d610a21565b60405190151581526020015b60405180910390f35b34801561039d575f80fd5b506103a6610a67565b005b3480156103b3575f80fd5b506103bd60165481565b604051908152602001610389565b3480156103d6575f80fd5b506103df610a9d565b60405161038991906124ea565b3480156103f7575f80fd5b5061041f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610389565b348015610442575f80fd5b5061037d610451366004612549565b610b2d565b348015610461575f80fd5b5061037d610470366004612573565b60186020525f908152604090205460ff1681565b34801561048f575f80fd5b506002546103bd565b3480156104a3575f80fd5b5060085461037d90610100900460ff1681565b3480156104c1575f80fd5b506103a66104d036600461258e565b610b46565b3480156104e0575f80fd5b5061037d6104ef3660046125a5565b610be7565b3480156104ff575f80fd5b5060405160128152602001610389565b34801561051a575f80fd5b5061037d610529366004612549565b610c0a565b348015610539575f80fd5b506103a661054836600461258e565b610c2b565b348015610558575f80fd5b506103bd60065481565b34801561056d575f80fd5b50600d5461041f9061010090046001600160a01b031681565b348015610591575f80fd5b5060055461037d90600160a81b900460ff1681565b3480156105b1575f80fd5b5061037d6105c0366004612573565b6001600160a01b03165f9081526017602052604090205460ff1690565b3480156105e8575f80fd5b506103a6610cd7565b3480156105fc575f80fd5b506103a661060b3660046125f2565b610d29565b34801561061b575f80fd5b50600d5461037d9060ff1681565b348015610634575f80fd5b506103bd610643366004612573565b6001600160a01b03165f9081526020819052604090205490565b348015610668575f80fd5b506103a6610d71565b34801561067c575f80fd5b506103a661068b366004612573565b610da6565b34801561069b575f80fd5b506103bd60155481565b3480156106b0575f80fd5b506103bd600a5481565b3480156106c5575f80fd5b506103bd600f5481565b3480156106da575f80fd5b506103a66106e9366004612573565b610e2c565b3480156106f9575f80fd5b506103bd60075481565b34801561070e575f80fd5b5061037d61071d36600461258e565b610ebd565b34801561072d575f80fd5b506005546001600160a01b031661041f565b34801561074a575f80fd5b506103a661075936600461260b565b610f6f565b348015610769575f80fd5b506103bd60135481565b34801561077e575f80fd5b506103df611055565b348015610792575f80fd5b506103bd60095481565b3480156107a7575f80fd5b506103a66107b6366004612688565b611064565b3480156107c6575f80fd5b506103bd60115481565b3480156107db575f80fd5b506103a66107ea3660046126bb565b61112f565b3480156107fa575f80fd5b5061037d610809366004612549565b6111c2565b348015610819575f80fd5b5061037d610828366004612549565b611218565b348015610838575f80fd5b5061037d610847366004612573565b60196020525f908152604090205460ff1681565b348015610866575f80fd5b506103a66108753660046126bb565b611225565b348015610885575f80fd5b5060085461037d9060ff1681565b34801561089e575f80fd5b506103bd60105481565b3480156108b3575f80fd5b50600e5461041f906001600160a01b031681565b3480156108d2575f80fd5b506103a66108e1366004612688565b6112b8565b3480156108f1575f80fd5b5061037d611340565b348015610905575f80fd5b5061037d61091436600461258e565b61137c565b348015610924575f80fd5b506103bd60125481565b348015610939575f80fd5b5061037d610948366004612573565b600c6020525f908152604090205460ff1681565b348015610967575f80fd5b506103a6610976366004612688565b61153e565b348015610986575f80fd5b506103bd6109953660046126db565b611592565b3480156109a5575f80fd5b50600e5461037d90600160a01b900460ff1681565b3480156109c5575f80fd5b5061041f7f000000000000000000000000f405601ba0d6948d01e644d0d58dcfed5a01bd0b81565b3480156109f8575f80fd5b506103a6610a07366004612573565b6115bc565b348015610a17575f80fd5b506103bd60145481565b6005545f906001600160a01b03163314610a565760405162461bcd60e51b8152600401610a4d90612712565b60405180910390fd5b506008805461ff0019169055600190565b6005546001600160a01b03163314610a915760405162461bcd60e51b8152600401610a4d90612712565b600d805460ff19169055565b606060038054610aac90612747565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad890612747565b8015610b235780601f10610afa57610100808354040283529160200191610b23565b820191905f5260205f20905b815481529060010190602001808311610b0657829003601f168201915b5050505050905090565b5f33610b3a818585611657565b60019150505b92915050565b6005546001600160a01b03163314610b705760405162461bcd60e51b8152600401610a4d90612712565b6002811015610bc15760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610a4d565b6103e8610bcd60025490565b610bd79083612793565b610be191906127aa565b600a5550565b5f33610bf4858285611669565b610bff8585856116c6565b506001949350505050565b5f33610b3a818585610c1c8383611592565b610c2691906127c9565b611657565b6005546001600160a01b03163314610c555760405162461bcd60e51b8152600401610a4d90612712565b6005811015610cb15760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178486f6c64206c6f776572207468616e20302e604482015261352560f01b6064820152608401610a4d565b6103e8610cbd60025490565b610cc79083612793565b610cd191906127aa565b60095550565b6005546001600160a01b03163314610d015760405162461bcd60e51b8152600401610a4d90612712565b600e805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610d535760405162461bcd60e51b8152600401610a4d90612712565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314610d9b5760405162461bcd60e51b8152600401610a4d90612712565b610da45f611723565b565b6005546001600160a01b03163314610dd05760405162461bcd60e51b8152600401610a4d90612712565b600e546040516001600160a01b03918216918316907fd0bdd1bf92049384d44f81d258f51a39b26cfc1d256348efb3b109fd8db72711905f90a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610a4d90612712565b600d546040516001600160a01b036101009092048216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f635905f90a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005545f906001600160a01b03163314610ee95760405162461bcd60e51b8152600401610a4d90612712565b600654821015610f615760405162461bcd60e51b815260206004820152603a60248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f206d696e42616c616e6365466f72436f6e747261637453656c6c0000000000006064820152608401610a4d565b50600781905560015b919050565b6005546001600160a01b03163314610f995760405162461bcd60e51b8152600401610a4d90612712565b600d5460ff16610fe15760405162461bcd60e51b8152602060048201526013602482015272109b1858dadb1a5cdd081a5cc81b1bd8dad959606a1b6044820152606401610a4d565b5f5b8281101561104f5781600c5f868685818110611001576110016127dc565b90506020020160208101906110169190612573565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580611047816127f0565b915050610fe3565b50505050565b606060048054610aac90612747565b6005546001600160a01b0316331461108e5760405162461bcd60e51b8152600401610a4d90612712565b7f000000000000000000000000f405601ba0d6948d01e644d0d58dcfed5a01bd0b6001600160a01b0316826001600160a01b0316036111215760405162461bcd60e51b815260206004820152602960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526834b9a0a6a6a830b4b960b91b6064820152608401610a4d565b61112b8282611774565b5050565b6005546001600160a01b031633146111595760405162461bcd60e51b8152600401610a4d90612712565b6013829055601481905561116d81836127c9565b6012819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b5f33816111cf8286611592565b90508381101561120b57604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a4d565b610bff8286868403611657565b5f33610b3a8185856116c6565b6005546001600160a01b0316331461124f5760405162461bcd60e51b8152600401610a4d90612712565b6010829055601181905561126381836127c9565b600f819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b6005546001600160a01b031633146112e25760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f781d26db56cdaee11e2fce438cd1461fa45f059fcd5f02aa8e6b1e5716d8d465910160405180910390a25050565b6005545f906001600160a01b0316331461136c5760405162461bcd60e51b8152600401610a4d90612712565b506008805460ff19169055600190565b6005545f906001600160a01b031633146113a85760405162461bcd60e51b8152600401610a4d90612712565b620186a06113b560025490565b6113bf91906127aa565b82101561142c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a4d565b620186a061143960025490565b611445906101f4612793565b61144f91906127aa565b8211156114bb5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a4d565b600754821115611535576040805162461bcd60e51b81526020600482015260248101919091527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e206d6178416d6f756e74546f6b656e73466f72436f6e747261637453656c6c6064820152608401610a4d565b50600655600190565b6005546001600160a01b031633146115685760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146115e65760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03811661164b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4d565b61165481611723565b50565b61166483838360016117c7565b505050565b5f6116748484611592565b90505f19811461104f57818110156116b857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a4d565b61104f84848484035f6117c7565b6001600160a01b0383166116ef57604051634b637e8f60e11b81525f6004820152602401610a4d565b6001600160a01b0382166117185760405163ec442f0560e01b81525f6004820152602401610a4d565b611664838383611899565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b6001600160a01b0384166117f05760405163e602df0560e01b81525f6004820152602401610a4d565b6001600160a01b03831661181957604051634a1406b160e11b81525f6004820152602401610a4d565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561104f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161188b91815260200190565b60405180910390a350505050565b805f036118ab5761166483835f6120af565b60085460ff1615611d44576005546001600160a01b038481169116148015906118e257506005546001600160a01b03838116911614155b80156118f657506001600160a01b03821615155b801561190d57506001600160a01b03821661dead14155b80156119235750600554600160a01b900460ff16155b15611d4457600e54600160a01b900460ff166119bb576001600160a01b0383165f9081526017602052604090205460ff168061197657506001600160a01b0382165f9081526017602052604090205460ff165b6119bb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a4d565b600854610100900460ff1615611b03576005546001600160a01b03838116911614801590611a1b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611a5957507f000000000000000000000000f405601ba0d6948d01e644d0d58dcfed5a01bd0b6001600160a01b0316826001600160a01b031614155b15611b0357325f908152600b60205260409020544311611af15760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a4d565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526019602052604090205460ff168015611b4257506001600160a01b0382165f9081526018602052604090205460ff16155b15611c1657600a54811115611ba85760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610a4d565b6009546001600160a01b0383165f90815260208190526040902054611bcd90836127c9565b1115611c115760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b611d44565b6001600160a01b0382165f9081526019602052604090205460ff168015611c5557506001600160a01b0383165f9081526018602052604090205460ff16155b15611cbc57600a54811115611c115760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610a4d565b6001600160a01b0382165f9081526018602052604090205460ff16611d44576009546001600160a01b0383165f90815260208190526040902054611d0090836127c9565b1115611d445760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b305f9081526020819052604090205460065481108015908190611d705750600554600160a81b900460ff165b8015611d865750600554600160a01b900460ff16155b8015611daa57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611dce57506001600160a01b0385165f9081526017602052604090205460ff16155b8015611df257506001600160a01b0384165f9081526017602052604090205460ff16155b15611e20576005805460ff60a01b1916600160a01b179055611e126121d5565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b909204821615911680611e6c57506001600160a01b0385165f9081526017602052604090205460ff165b15611e7457505f5b6001600160a01b0386165f9081526017602052604090205460ff161580611eb357506001600160a01b0385165f9081526017602052604090205460ff16155b15611f19576001600160a01b0386165f908152600c602052604090205460ff1615611f195760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dadb1a5cdd195960521b6044820152606401610a4d565b5f811561209b576001600160a01b0386165f9081526019602052604090205460ff168015611f4857505f601254115b15611fd457611f6d6064611f676012548861230c90919063ffffffff16565b9061231e565b905060125460145482611f809190612793565b611f8a91906127aa565b60165f828254611f9a91906127c9565b9091555050601254601354611faf9083612793565b611fb991906127aa565b60155f828254611fc991906127c9565b9091555061207d9050565b6001600160a01b0387165f9081526019602052604090205460ff168015611ffc57505f600f54115b1561207d5761201b6064611f67600f548861230c90919063ffffffff16565b9050600f546011548261202e9190612793565b61203891906127aa565b60165f82825461204891906127c9565b9091555050600f5460105461205d9083612793565b61206791906127aa565b60155f82825461207791906127c9565b90915550505b801561208e5761208e8730836120af565b6120988186612808565b94505b6120a68787876120af565b50505050505050565b6001600160a01b0383166120d9578060025f8282546120ce91906127c9565b909155506121499050565b6001600160a01b0383165f908152602081905260409020548181101561212b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a4d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661216557600280548290039055612183565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121c891815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f6016546015546121f791906127c9565b90505f821580612205575081155b1561220f57505050565b60075483111561221f5760075492505b4761222984612329565b5f61223447836124df565b90505f61225085611f676016548561230c90919063ffffffff16565b5f60158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d805f81146122a5576040519150601f19603f3d011682016040523d82523d5f602084013e6122aa565b606091505b5050600d5460405191955061010090046001600160a01b03169047905f81818185875af1925050503d805f81146122fc576040519150601f19603f3d011682016040523d82523d5f602084013e612301565b606091505b505050505050505050565b5f6123178284612793565b9392505050565b5f61231782846127aa565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061235c5761235c6127dc565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123fc919061281b565b8160018151811061240f5761240f6127dc565b60200260200101906001600160a01b031690816001600160a01b03168152505061245a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611657565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906124ae9085905f90869030904290600401612836565b5f604051808303815f87803b1580156124c5575f80fd5b505af11580156124d7573d5f803e3d5ffd5b505050505050565b5f6123178284612808565b5f6020808352835180828501525f5b81811015612515578581018301518582016040015282016124f9565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611654575f80fd5b5f806040838503121561255a575f80fd5b823561256581612535565b946020939093013593505050565b5f60208284031215612583575f80fd5b813561231781612535565b5f6020828403121561259e575f80fd5b5035919050565b5f805f606084860312156125b7575f80fd5b83356125c281612535565b925060208401356125d281612535565b929592945050506040919091013590565b80358015158114610f6a575f80fd5b5f60208284031215612602575f80fd5b612317826125e3565b5f805f6040848603121561261d575f80fd5b833567ffffffffffffffff80821115612634575f80fd5b818601915086601f830112612647575f80fd5b813581811115612655575f80fd5b8760208260051b8501011115612669575f80fd5b60209283019550935061267f91860190506125e3565b90509250925092565b5f8060408385031215612699575f80fd5b82356126a481612535565b91506126b2602084016125e3565b90509250929050565b5f80604083850312156126cc575f80fd5b50508035926020909101359150565b5f80604083850312156126ec575f80fd5b82356126f781612535565b9150602083013561270781612535565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061275b57607f821691505b60208210810361277957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b4057610b4061277f565b5f826127c457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b4057610b4061277f565b634e487b7160e01b5f52603260045260245ffd5b5f600182016128015761280161277f565b5060010190565b81810381811115610b4057610b4061277f565b5f6020828403121561282b575f80fd5b815161231781612535565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156128845784516001600160a01b03168352938301939183019160010161285f565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122057bfb25e0c5109500766349c597593fe33f875e0c14bcafd0912f51ec73ad07764736f6c63430008150033
Deployed Bytecode Sourcemap
26390:16328:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30887:130;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;30887:130:0;;;;;;;;36624:86;;;;;;;;;;;;;:::i;:::-;;27537:34;;;;;;;;;;;;;;;;;;;352:25:1;;;340:2;325:18;27537:34:0;206:177:1;12864:91:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26469:37::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1124:32:1;;;1106:51;;1094:2;1079:18;26469:37:0;941:222:1;15157:190:0;;;;;;;;;;-1:-1:-1;15157:190:0;;;;;:::i;:::-;;:::i;27715:51::-;;;;;;;;;;-1:-1:-1;27715:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13966:99;;;;;;;;;;-1:-1:-1;14045:12:0;;13966:99;;26815:35;;;;;;;;;;-1:-1:-1;26815:35:0;;;;;;;;;;;32447:188;;;;;;;;;;-1:-1:-1;32447:188:0;;;;;:::i;:::-;;:::i;15925:249::-;;;;;;;;;;-1:-1:-1;15925:249:0;;;;;:::i;:::-;;:::i;13817:84::-;;;;;;;;;;-1:-1:-1;13817:84:0;;13891:2;2664:36:1;;2652:2;2637:18;13817:84:0;2522:184:1;16583:238:0;;;;;;;;;;-1:-1:-1;16583:238:0;;;;;:::i;:::-;;:::i;32760:193::-;;;;;;;;;;-1:-1:-1;32760:193:0;;;;;:::i;:::-;;:::i;26655:40::-;;;;;;;;;;;;;;;;27163:29;;;;;;;;;;-1:-1:-1;27163:29:0;;;;;;;-1:-1:-1;;;;;27163:29:0;;;26609:39;;;;;;;;;;-1:-1:-1;26609:39:0;;;;-1:-1:-1;;;26609:39:0;;;;;;36718:121;;;;;;;;;;-1:-1:-1;36718:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;36808:23:0;36784:4;36808:23;;;:14;:23;;;;;;;;;36718:121;30495:118;;;;;;;;;;;;;:::i;33406:113::-;;;;;;;;;;-1:-1:-1;33406:113:0;;;;;:::i;:::-;;:::i;27098:34::-;;;;;;;;;;-1:-1:-1;27098:34:0;;;;;;;;14128:118;;;;;;;;;;-1:-1:-1;14128:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14220:18:0;14193:7;14220:18;;;;;;;;;;;;14128:118;25025:103;;;;;;;;;;;;;:::i;35865:173::-;;;;;;;;;;-1:-1:-1;35865:173:0;;;;;:::i;:::-;;:::i;27495:35::-;;;;;;;;;;;;;;;;26886:20;;;;;;;;;;;;;;;;27278:27;;;;;;;;;;;;;;;;35542:217;;;;;;;;;;-1:-1:-1;35542:217:0;;;;;:::i;:::-;;:::i;26702:45::-;;;;;;;;;;;;;;;;31943:346;;;;;;;;;;-1:-1:-1;31943:346:0;;;;;:::i;:::-;;:::i;24374:87::-;;;;;;;;;;-1:-1:-1;24447:6:0;;-1:-1:-1;;;;;24447:6:0;24374:87;;36231:318;;;;;;;;;;-1:-1:-1;36231:318:0;;;;;:::i;:::-;;:::i;27420:30::-;;;;;;;;;;;;;;;;13074:95;;;;;;;;;;;;;:::i;26857:22::-;;;;;;;;;;;;;;;;34971:284;;;;;;;;;;-1:-1:-1;34971:284:0;;;;;:::i;:::-;;:::i;27348:28::-;;;;;;;;;;;;;;;;34168:327;;;;;;;;;;-1:-1:-1;34168:327:0;;;;;:::i;:::-;;:::i;17509:504::-;;;;;;;;;;-1:-1:-1;17509:504:0;;;;;:::i;:::-;;:::i;14451:182::-;;;;;;;;;;-1:-1:-1;14451:182:0;;;;;:::i;:::-;;:::i;27924:41::-;;;;;;;;;;-1:-1:-1;27924:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33683:320;;;;;;;;;;-1:-1:-1;33683:320:0;;;;;:::i;:::-;;:::i;26774:34::-;;;;;;;;;;-1:-1:-1;26774:34:0;;;;;;;;27312:29;;;;;;;;;;;;;;;;27199:28;;;;;;;;;;-1:-1:-1;27199:28:0;;;;-1:-1:-1;;;;;27199:28:0;;;34662:174;;;;;;;;;;-1:-1:-1;34662:174:0;;;;;:::i;:::-;;:::i;30688:128::-;;;;;;;;;;;;;:::i;31173:651::-;;;;;;;;;;-1:-1:-1;31173:651:0;;;;;:::i;:::-;;:::i;27385:28::-;;;;;;;;;;;;;;;;27048:43;;;;;;;;;;-1:-1:-1;27048:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33139:149;;;;;;;;;;-1:-1:-1;33139:149:0;;;;;:::i;:::-;;:::i;14696:142::-;;;;;;;;;;-1:-1:-1;14696:142:0;;;;;:::i;:::-;;:::i;27236:33::-;;;;;;;;;;-1:-1:-1;27236:33:0;;;;-1:-1:-1;;;27236:33:0;;;;;;26513:32;;;;;;;;;;;;;;;25283:238;;;;;;;;;;-1:-1:-1;25283:238:0;;;;;:::i;:::-;;:::i;27457:29::-;;;;;;;;;;;;;;;;30887:130;24447:6;;30946:4;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;30963:16:0::1;:24:::0;;-1:-1:-1;;30963:24:0::1;::::0;;:16:::1;30887:130:::0;:::o;36624:86::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;36679:15:::1;:23:::0;;-1:-1:-1;;36679:23:0::1;::::0;;36624:86::o;12864:91::-;12909:13;12942:5;12935:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12864:91;:::o;15157:190::-;15230:4;10033:10;15286:31;10033:10;15302:7;15311:5;15286:8;:31::i;:::-;15335:4;15328:11;;;15157:190;;;;;:::o;32447:188::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;32539:1:::1;32529:6;:11;;32521:56;;;::::0;-1:-1:-1;;;32521:56:0;;5877:2:1;32521:56:0::1;::::0;::::1;5859:21:1::0;;;5896:18;;;5889:30;5955:34;5935:18;;;5928:62;6007:18;;32521:56:0::1;5675:356:1::0;32521:56:0::1;32623:4;32606:13;14045:12:::0;;;13966:99;32606:13:::1;32597:22;::::0;:6;:22:::1;:::i;:::-;32596:31;;;;:::i;:::-;32588:5;:39:::0;-1:-1:-1;32447:188:0:o;15925:249::-;16012:4;10033:10;16070:37;16086:4;10033:10;16101:5;16070:15;:37::i;:::-;16118:26;16128:4;16134:2;16138:5;16118:9;:26::i;:::-;-1:-1:-1;16162:4:0;;15925:249;-1:-1:-1;;;;15925:249:0:o;16583:238::-;16671:4;10033:10;16727:64;10033:10;16743:7;16780:10;16752:25;10033:10;16743:7;16752:9;:25::i;:::-;:38;;;;:::i;:::-;16727:8;:64::i;32760:193::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;32853:1:::1;32843:6;:11;;32835:58;;;::::0;-1:-1:-1;;;32835:58:0;;6895:2:1;32835:58:0::1;::::0;::::1;6877:21:1::0;6934:2;6914:18;;;6907:30;6973:34;6953:18;;;6946:62;-1:-1:-1;;;7024:18:1;;;7017:32;7066:19;;32835:58:0::1;6693:398:1::0;32835:58:0::1;32941:4;32924:13;14045:12:::0;;;13966:99;32924:13:::1;32915:22;::::0;:6;:22:::1;:::i;:::-;32914:31;;;;:::i;:::-;32904:7;:41:::0;-1:-1:-1;32760:193:0:o;30495:118::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;30548:13:::1;:20:::0;;-1:-1:-1;;;;30548:20:0::1;-1:-1:-1::0;;;30548:20:0::1;::::0;;30579:19:::1;:26:::0;;-1:-1:-1;;;;30579:26:0::1;-1:-1:-1::0;;;30579:26:0::1;::::0;;30495:118::o;33406:113::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;33482:19:::1;:29:::0;;;::::1;;-1:-1:-1::0;;;33482:29:0::1;-1:-1:-1::0;;;;33482:29:0;;::::1;::::0;;;::::1;::::0;;33406:113::o;25025:103::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;25090:30:::1;25117:1;25090:18;:30::i;:::-;25025:103::o:0;35865:173::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;35980:13:::1;::::0;35948:46:::1;::::0;-1:-1:-1;;;;;35980:13:0;;::::1;::::0;35948:46;::::1;::::0;::::1;::::0;35980:13:::1;::::0;35948:46:::1;36005:13;:25:::0;;-1:-1:-1;;;;;;36005:25:0::1;-1:-1:-1::0;;;;;36005:25:0;;;::::1;::::0;;;::::1;::::0;;35865:173::o;35542:217::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;35691:14:::1;::::0;35650:56:::1;::::0;-1:-1:-1;;;;;35691:14:0::1;::::0;;::::1;::::0;::::1;::::0;35650:56;::::1;::::0;::::1;::::0;;;::::1;35717:14;:34:::0;;-1:-1:-1;;;;;35717:34:0;;::::1;;;-1:-1:-1::0;;;;;;35717:34:0;;::::1;::::0;;;::::1;::::0;;35542:217::o;31943:346::-;24447:6;;32043:4;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;32095:25:::1;;32082:9;:38;;32060:146;;;::::0;-1:-1:-1;;;32060:146:0;;7298:2:1;32060:146:0::1;::::0;::::1;7280:21:1::0;7337:2;7317:18;;;7310:30;7376:34;7356:18;;;7349:62;7447:28;7427:18;;;7420:56;7493:19;;32060:146:0::1;7096:422:1::0;32060:146:0::1;-1:-1:-1::0;32217:30:0::1;:42:::0;;;32277:4:::1;24665:1;31943:346:::0;;;:::o;36231:318::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;36377:15:::1;::::0;::::1;;36369:47;;;::::0;-1:-1:-1;;;36369:47:0;;7725:2:1;36369:47:0::1;::::0;::::1;7707:21:1::0;7764:2;7744:18;;;7737:30;-1:-1:-1;;;7783:18:1;;;7776:49;7842:18;;36369:47:0::1;7523:343:1::0;36369:47:0::1;36432:9;36427:115;36447:20:::0;;::::1;36427:115;;;36517:13;36489:11;:25;36501:9;;36511:1;36501:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36489:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;36489:25:0;:41;;-1:-1:-1;;36489:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36469:3;::::1;::::0;::::1;:::i;:::-;;;;36427:115;;;;36231:318:::0;;;:::o;13074:95::-;13121:13;13154:7;13147:14;;;;;:::i;34971:284::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;35117:7:::1;-1:-1:-1::0;;;;;35109:15:0::1;:4;-1:-1:-1::0;;;;;35109:15:0::1;::::0;35087:106:::1;;;::::0;-1:-1:-1;;;35087:106:0;;8345:2:1;35087:106:0::1;::::0;::::1;8327:21:1::0;8384:2;8364:18;;;8357:30;8423:34;8403:18;;;8396:62;-1:-1:-1;;;8474:18:1;;;8467:39;8523:19;;35087:106:0::1;8143:405:1::0;35087:106:0::1;35206:41;35235:4;35241:5;35206:28;:41::i;:::-;34971:284:::0;;:::o;34168:327::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;34287:15:::1;:30:::0;;;34328:14:::1;:28:::0;;;34383:32:::1;34345:11:::0;34305:12;34383:32:::1;:::i;:::-;34367:13;:48:::0;;;34451:2:::1;-1:-1:-1::0;34434:19:0::1;34426:61;;;::::0;-1:-1:-1;;;34426:61:0;;8755:2:1;34426:61:0::1;::::0;::::1;8737:21:1::0;8794:2;8774:18;;;8767:30;8833:31;8813:18;;;8806:59;8882:18;;34426:61:0::1;8553:353:1::0;17509:504:0;17604:4;10033:10;17604:4;17687:25;10033:10;17704:7;17687:9;:25::i;:::-;17660:52;;17746:17;17727:16;:36;17723:150;;;17787:74;;-1:-1:-1;;;17787:74:0;;-1:-1:-1;;;;;9131:32:1;;17787:74:0;;;9113:51:1;9180:18;;;9173:34;;;9223:18;;;9216:34;;;9086:18;;17787:74:0;8911:345:1;17723:150:0;17908:62;17917:5;17924:7;17952:17;17933:16;:36;17908:8;:62::i;14451:182::-;14520:4;10033:10;14576:27;10033:10;14593:2;14597:5;14576:9;:27::i;33683:320::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;33801:14:::1;:29:::0;;;33841:13:::1;:27:::0;;;33894:30:::1;33857:11:::0;33818:12;33894:30:::1;:::i;:::-;33879:12;:45:::0;;;33959:2:::1;-1:-1:-1::0;33943:18:0::1;33935:60;;;::::0;-1:-1:-1;;;33935:60:0;;8755:2:1;33935:60:0::1;::::0;::::1;8737:21:1::0;8794:2;8774:18;;;8767:30;8833:31;8813:18;;;8806:59;8882:18;;33935:60:0::1;8553:353:1::0;34662:174:0;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34747:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;:34;;-1:-1:-1;;34747:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34797:31;;154:41:1;;;34797:31:0::1;::::0;127:18:1;34797:31:0::1;;;;;;;34662:174:::0;;:::o;30688:128::-;24447:6;;30746:4;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;-1:-1:-1;30763:15:0::1;:23:::0;;-1:-1:-1;;30763:23:0::1;::::0;;;30688:128;:::o;31173:651::-;24447:6;;31267:4;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;31335:6:::1;31319:13;14045:12:::0;;;13966:99;31319:13:::1;:22;;;;:::i;:::-;31306:9;:35;;31284:138;;;::::0;-1:-1:-1;;;31284:138:0;;9463:2:1;31284:138:0::1;::::0;::::1;9445:21:1::0;9502:2;9482:18;;;9475:30;9541:34;9521:18;;;9514:62;-1:-1:-1;;;9592:18:1;;;9585:51;9653:19;;31284:138:0::1;9261:417:1::0;31284:138:0::1;31492:6;31475:13;14045:12:::0;;;13966:99;31475:13:::1;31469:19;::::0;:3:::1;:19;:::i;:::-;31468:30;;;;:::i;:::-;31455:9;:43;;31433:145;;;::::0;-1:-1:-1;;;31433:145:0;;9885:2:1;31433:145:0::1;::::0;::::1;9867:21:1::0;9924:2;9904:18;;;9897:30;9963:34;9943:18;;;9936:62;-1:-1:-1;;;10014:18:1;;;10007:50;10074:19;;31433:145:0::1;9683:416:1::0;31433:145:0::1;31624:30;;31611:9;:43;;31589:157;;;::::0;;-1:-1:-1;;;31589:157:0;;10306:2:1;31589:157:0::1;::::0;::::1;10288:21:1::0;10325:18;;;10318:30;;;;10384:34;10364:18;;;10357:62;10455:34;10435:18;;;10428:62;10507:19;;31589:157:0::1;10104:428:1::0;31589:157:0::1;-1:-1:-1::0;31757:25:0::1;:37:::0;31812:4:::1;::::0;31173:651::o;33139:149::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33246:27:0;;;::::1;;::::0;;;:19:::1;:27;::::0;;;;:34;;-1:-1:-1;;33246:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33139:149::o;14696:142::-;-1:-1:-1;;;;;14803:18:0;;;14776:7;14803:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14696:142::o;25283:238::-;24447:6;;-1:-1:-1;;;;;24447:6:0;10033:10;24594:23;24586:68;;;;-1:-1:-1;;;24586:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25386:22:0;::::1;25364:110;;;::::0;-1:-1:-1;;;25364:110:0;;10739:2:1;25364:110:0::1;::::0;::::1;10721:21:1::0;10778:2;10758:18;;;10751:30;10817:34;10797:18;;;10790:62;-1:-1:-1;;;10868:18:1;;;10861:36;10914:19;;25364:110:0::1;10537:402:1::0;25364:110:0::1;25485:28;25504:8;25485:18;:28::i;:::-;25283:238:::0;:::o;21706:138::-;21799:37;21808:5;21815:7;21824:5;21831:4;21799:8;:37::i;:::-;21706:138;;;:::o;23443:487::-;23543:24;23570:25;23580:5;23587:7;23570:9;:25::i;:::-;23543:52;;-1:-1:-1;;23610:16:0;:37;23606:317;;23687:5;23668:16;:24;23664:132;;;23720:60;;-1:-1:-1;;;23720:60:0;;-1:-1:-1;;;;;9131:32:1;;23720:60:0;;;9113:51:1;9180:18;;;9173:34;;;9223:18;;;9216:34;;;9086:18;;23720:60:0;8911:345:1;23664:132:0;23839:57;23848:5;23855:7;23883:5;23864:16;:24;23890:5;23839:8;:57::i;18398:308::-;-1:-1:-1;;;;;18482:18:0;;18478:88;;18524:30;;-1:-1:-1;;;18524:30:0;;18551:1;18524:30;;;1106:51:1;1079:18;;18524:30:0;941:222:1;18478:88:0;-1:-1:-1;;;;;18580:16:0;;18576:88;;18620:32;;-1:-1:-1;;;18620:32:0;;18649:1;18620:32;;;1106:51:1;1079:18;;18620:32:0;941:222:1;18576:88:0;18674:24;18682:4;18688:2;18692:5;18674:7;:24::i;25681:191::-;25774:6;;;-1:-1:-1;;;;;25791:17:0;;;-1:-1:-1;;;;;;25791:17:0;;;;;;;25824:40;;25774:6;;;25791:17;25774:6;;25824:40;;25755:16;;25824:40;25744:128;25681:191;:::o;35263:155::-;-1:-1:-1;;;;;35346:15:0;;;;;;:9;:15;;;;;;:23;;-1:-1:-1;;35346:23:0;;;;;;;;;;35387;;35346;;:15;35387:23;;;35263:155;;:::o;22711:443::-;-1:-1:-1;;;;;22824:19:0;;22820:91;;22867:32;;-1:-1:-1;;;22867:32:0;;22896:1;22867:32;;;1106:51:1;1079:18;;22867:32:0;941:222:1;22820:91:0;-1:-1:-1;;;;;22925:21:0;;22921:92;;22970:31;;-1:-1:-1;;;22970:31:0;;22998:1;22970:31;;;1106:51:1;1079:18;;22970:31:0;941:222:1;22921:92:0;-1:-1:-1;;;;;23023:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23069:78;;;;23120:7;-1:-1:-1;;;;;23104:31:0;23113:5;-1:-1:-1;;;;;23104:31:0;;23129:5;23104:31;;;;352:25:1;;340:2;325:18;;206:177;23104:31:0;;;;;;;;22711:443;;;;:::o;36847:4297::-;36973:6;36983:1;36973:11;36969:91;;37001:26;37015:4;37021:2;37025:1;37001:13;:26::i;36969:91::-;37076:15;;;;37072:2240;;;24447:6;;-1:-1:-1;;;;;37130:15:0;;;24447:6;;37130:15;;;;:49;;-1:-1:-1;24447:6:0;;-1:-1:-1;;;;;37166:13:0;;;24447:6;;37166:13;;37130:49;:86;;;;-1:-1:-1;;;;;;37200:16:0;;;;37130:86;:128;;;;-1:-1:-1;;;;;;37237:21:0;;37251:6;37237:21;;37130:128;:168;;;;-1:-1:-1;37280:18:0;;-1:-1:-1;;;37280:18:0;;;;37279:19;37130:168;37108:2193;;;37338:13;;-1:-1:-1;;;37338:13:0;;;;37333:213;;-1:-1:-1;;;;;37410:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;37434:18:0;;;;;;:14;:18;;;;;;;;37410:42;37376:150;;;;-1:-1:-1;;;37376:150:0;;11146:2:1;37376:150:0;;;11128:21:1;11185:2;11165:18;;;11158:30;-1:-1:-1;;;11204:18:1;;;11197:52;11266:18;;37376:150:0;10944:346:1;37376:150:0;37702:16;;;;;;;37698:607;;;24447:6;;-1:-1:-1;;;;;37773:13:0;;;24447:6;;37773:13;;;;:66;;;37829:9;-1:-1:-1;;;;;37815:24:0;:2;-1:-1:-1;;;;;37815:24:0;;;37773:66;:117;;;;;37882:7;-1:-1:-1;;;;;37868:22:0;:2;-1:-1:-1;;;;;37868:22:0;;;37773:117;37743:543;;;38000:9;37979:31;;;;:20;:31;;;;;;38046:12;-1:-1:-1;37941:248:0;;;;-1:-1:-1;;;37941:248:0;;11497:2:1;37941:248:0;;;11479:21:1;11536:2;11516:18;;;11509:30;11575:34;11555:18;;;11548:62;11646:34;11626:18;;;11619:62;-1:-1:-1;;;11697:19:1;;;11690:38;11745:19;;37941:248:0;11295:475:1;37941:248:0;38237:9;38216:31;;;;:20;:31;;;;;38250:12;38216:46;;37743:543;-1:-1:-1;;;;;38357:15:0;;;;;;:9;:15;;;;;;;;:43;;;;-1:-1:-1;;;;;;38377:23:0;;;;;;:19;:23;;;;;;;;38376:24;38357:43;38353:933;;;38469:5;;38459:6;:15;;38425:139;;;;-1:-1:-1;;;38425:139:0;;11977:2:1;38425:139:0;;;11959:21:1;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;-1:-1:-1;;;12106:18:1;;;12099:36;12152:19;;38425:139:0;11775:402:1;38425:139:0;38647:7;;-1:-1:-1;;;;;14220:18:0;;14193:7;14220:18;;;;;;;;;;;38621:22;;:6;:22;:::i;:::-;:33;;38587:138;;;;-1:-1:-1;;;38587:138:0;;12384:2:1;38587:138:0;;;12366:21:1;12423:2;12403:18;;;12396:30;-1:-1:-1;;;12442:18:1;;;12435:49;12501:18;;38587:138:0;12182:343:1;38587:138:0;38353:933;;;-1:-1:-1;;;;;38823:13:0;;;;;;:9;:13;;;;;;;;:43;;;;-1:-1:-1;;;;;;38841:25:0;;;;;;:19;:25;;;;;;;;38840:26;38823:43;38797:489;;;38953:5;;38943:6;:15;;38909:140;;;;-1:-1:-1;;;38909:140:0;;12732:2:1;38909:140:0;;;12714:21:1;12771:2;12751:18;;;12744:30;12810:34;12790:18;;;12783:62;-1:-1:-1;;;12861:18:1;;;12854:37;12908:19;;38909:140:0;12530:403:1;38797:489:0;-1:-1:-1;;;;;39080:23:0;;;;;;:19;:23;;;;;;;;39075:211;;39188:7;;-1:-1:-1;;;;;14220:18:0;;14193:7;14220:18;;;;;;;;;;;39162:22;;:6;:22;:::i;:::-;:33;;39128:138;;;;-1:-1:-1;;;39128:138:0;;12384:2:1;39128:138:0;;;12366:21:1;12423:2;12403:18;;;12396:30;-1:-1:-1;;;12442:18:1;;;12435:49;12501:18;;39128:138:0;12182:343:1;39128:138:0;39373:4;39324:28;14220:18;;;;;;;;;;;39431:25;;39407:49;;;;;;;39487:43;;-1:-1:-1;39511:19:0;;-1:-1:-1;;;39511:19:0;;;;39487:43;:79;;;;-1:-1:-1;39548:18:0;;-1:-1:-1;;;39548:18:0;;;;39547:19;39487:79;:112;;;;-1:-1:-1;;;;;;39584:15:0;;;;;;:9;:15;;;;;;;;39583:16;39487:112;:150;;;;-1:-1:-1;;;;;;39617:20:0;;;;;;:14;:20;;;;;;;;39616:21;39487:150;:186;;;;-1:-1:-1;;;;;;39655:18:0;;;;;;:14;:18;;;;;;;;39654:19;39487:186;39469:338;;;39700:18;:25;;-1:-1:-1;;;;39700:25:0;-1:-1:-1;;;39700:25:0;;;39742:10;:8;:10::i;:::-;39769:18;:26;;-1:-1:-1;;;;39769:26:0;;;39469:338;39835:18;;-1:-1:-1;;;;;39955:20:0;;39819:12;39955:20;;;:14;:20;;;;;;39835:18;-1:-1:-1;;;39835:18:0;;;;;39834:19;;39955:20;;:42;;-1:-1:-1;;;;;;39979:18:0;;;;;;:14;:18;;;;;;;;39955:42;39951:90;;;-1:-1:-1;40024:5:0;39951:90;-1:-1:-1;;;;;40058:20:0;;;;;;:14;:20;;;;;;;;40057:21;;:44;;-1:-1:-1;;;;;;40083:18:0;;;;;;:14;:18;;;;;;;;40082:19;40057:44;40053:130;;;-1:-1:-1;;;;;40127:17:0;;;;;;:11;:17;;;;;;;;40126:18;40118:53;;;;-1:-1:-1;;;40118:53:0;;13140:2:1;40118:53:0;;;13122:21:1;13179:2;13159:18;;;13152:30;-1:-1:-1;;;13198:18:1;;;13191:52;13260:18;;40118:53:0;12938:346:1;40118:53:0;40195:12;40300:7;40296:797;;;-1:-1:-1;;;;;40352:13:0;;;;;;:9;:13;;;;;;;;:34;;;;;40385:1;40369:13;;:17;40352:34;40348:598;;;40414:34;40444:3;40414:25;40425:13;;40414:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;40407:41;;40516:13;;40498:14;;40491:4;:21;;;;:::i;:::-;40490:39;;;;:::i;:::-;40467:19;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;40599:13:0;;40580:15;;40573:22;;:4;:22;:::i;:::-;40572:40;;;;:::i;:::-;40548:20;;:64;;;;;;;:::i;:::-;;;;-1:-1:-1;40348:598:0;;-1:-1:-1;40348:598:0;;-1:-1:-1;;;;;40674:15:0;;;;;;:9;:15;;;;;;;;:35;;;;;40708:1;40693:12;;:16;40674:35;40670:276;;;40737:33;40766:3;40737:24;40748:12;;40737:6;:10;;:24;;;;:::i;:33::-;40730:40;;40837:12;;40820:13;;40813:4;:20;;;;:::i;:::-;40812:37;;;;:::i;:::-;40789:19;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;;40918:12:0;;40900:14;;40893:21;;:4;:21;:::i;:::-;40892:38;;;;:::i;:::-;40868:20;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;40670:276:0;40966:8;;40962:89;;40995:40;41009:4;41023;41030;40995:13;:40::i;:::-;41067:14;41077:4;41067:14;;:::i;:::-;;;40296:797;41105:31;41119:4;41125:2;41129:6;41105:13;:31::i;:::-;36958:4186;;;;36847:4297;;;:::o;19022:1135::-;-1:-1:-1;;;;;19112:18:0;;19108:552;;19266:5;19250:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19108:552:0;;-1:-1:-1;19108:552:0;;-1:-1:-1;;;;;19326:15:0;;19304:19;19326:15;;;;;;;;;;;19360:19;;;19356:117;;;19407:50;;-1:-1:-1;;;19407:50:0;;-1:-1:-1;;;;;9131:32:1;;19407:50:0;;;9113:51:1;9180:18;;;9173:34;;;9223:18;;;9216:34;;;9086:18;;19407:50:0;8911:345:1;19356:117:0;-1:-1:-1;;;;;19596:15:0;;:9;:15;;;;;;;;;;19614:19;;;;19596:37;;19108:552;-1:-1:-1;;;;;19676:16:0;;19672:435;;19842:12;:21;;;;;;;19672:435;;;-1:-1:-1;;;;;20058:13:0;;:9;:13;;;;;;;;;;:22;;;;;;19672:435;20139:2;-1:-1:-1;;;;;20124:25:0;20133:4;-1:-1:-1;;;;;20124:25:0;;20143:5;20124:25;;;;352::1;;340:2;325:18;;206:177;20124:25:0;;;;;;;;19022:1135;;;:::o;41731:984::-;41814:4;41770:23;14220:18;;;;;;;;;;;41770:50;;41831:25;41882:19;;41859:20;;:42;;;;:::i;:::-;41831:70;-1:-1:-1;41912:12:0;41941:20;;;:46;;-1:-1:-1;41965:22:0;;41941:46;41937:85;;;42004:7;;;41731:984::o;41937:85::-;42056:30;;42038:15;:48;42034:129;;;42121:30;;42103:48;;42034:129;42203:21;42237:33;42254:15;42237:16;:33::i;:::-;42283:18;42304:44;:21;42330:17;42304:25;:44::i;:::-;42283:65;;42361:21;42385:58;42425:17;42385:35;42400:19;;42385:10;:14;;:35;;;;:::i;:58::-;42479:1;42456:20;:24;;;42491:19;:23;;;42549:13;;42541:53;;42361:82;;-1:-1:-1;;;;;;42549:13:0;;42361:82;;42541:53;42479:1;42541:53;42361:82;42549:13;42541:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42629:14:0;;42621:86;;42527:67;;-1:-1:-1;42629:14:0;;;-1:-1:-1;;;;;42629:14:0;;42671:21;;42621:86;;;;42671:21;42629:14;42621:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;41731:984:0:o;3420:98::-;3478:7;3505:5;3509:1;3505;:5;:::i;:::-;3498:12;3420:98;-1:-1:-1;;;3420:98:0:o;3819:::-;3877:7;3904:5;3908:1;3904;:5;:::i;41152:571::-;41302:16;;;41316:1;41302:16;;;;;;;;41278:21;;41302:16;;;;;;;;;;-1:-1:-1;41302:16:0;41278:40;;41347:4;41329;41334:1;41329:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41329:23:0;;;-1:-1:-1;;;;;41329:23:0;;;;;41373:9;-1:-1:-1;;;;;41373:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41363:4;41368:1;41363:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;41363:26:0;;;-1:-1:-1;;;;;41363:26:0;;;;;41402:56;41419:4;41434:9;41446:11;41402:8;:56::i;:::-;41497:218;;-1:-1:-1;;;41497:218:0;;-1:-1:-1;;;;;41497:9:0;:60;;;;:218;;41572:11;;41598:1;;41642:4;;41669;;41689:15;;41497:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41207:516;41152:571;:::o;3063:98::-;3121:7;3148:5;3152:1;3148;:5;:::i;388:548:1:-;500:4;529:2;558;547:9;540:21;590:6;584:13;633:6;628:2;617:9;613:18;606:34;658:1;668:140;682:6;679:1;676:13;668:140;;;777:14;;;773:23;;767:30;743:17;;;762:2;739:26;732:66;697:10;;668:140;;;672:3;857:1;852:2;843:6;832:9;828:22;824:31;817:42;927:2;920;916:7;911:2;903:6;899:15;895:29;884:9;880:45;876:54;868:62;;;;388:548;;;;:::o;1168:131::-;-1:-1:-1;;;;;1243:31:1;;1233:42;;1223:70;;1289:1;1286;1279:12;1304:315;1372:6;1380;1433:2;1421:9;1412:7;1408:23;1404:32;1401:52;;;1449:1;1446;1439:12;1401:52;1488:9;1475:23;1507:31;1532:5;1507:31;:::i;:::-;1557:5;1609:2;1594:18;;;;1581:32;;-1:-1:-1;;;1304:315:1:o;1624:247::-;1683:6;1736:2;1724:9;1715:7;1711:23;1707:32;1704:52;;;1752:1;1749;1742:12;1704:52;1791:9;1778:23;1810:31;1835:5;1810:31;:::i;1876:180::-;1935:6;1988:2;1976:9;1967:7;1963:23;1959:32;1956:52;;;2004:1;2001;1994:12;1956:52;-1:-1:-1;2027:23:1;;1876:180;-1:-1:-1;1876:180:1:o;2061:456::-;2138:6;2146;2154;2207:2;2195:9;2186:7;2182:23;2178:32;2175:52;;;2223:1;2220;2213:12;2175:52;2262:9;2249:23;2281:31;2306:5;2281:31;:::i;:::-;2331:5;-1:-1:-1;2388:2:1;2373:18;;2360:32;2401:33;2360:32;2401:33;:::i;:::-;2061:456;;2453:7;;-1:-1:-1;;;2507:2:1;2492:18;;;;2479:32;;2061:456::o;2919:160::-;2984:20;;3040:13;;3033:21;3023:32;;3013:60;;3069:1;3066;3059:12;3084:180;3140:6;3193:2;3181:9;3172:7;3168:23;3164:32;3161:52;;;3209:1;3206;3199:12;3161:52;3232:26;3248:9;3232:26;:::i;3269:689::-;3361:6;3369;3377;3430:2;3418:9;3409:7;3405:23;3401:32;3398:52;;;3446:1;3443;3436:12;3398:52;3486:9;3473:23;3515:18;3556:2;3548:6;3545:14;3542:34;;;3572:1;3569;3562:12;3542:34;3610:6;3599:9;3595:22;3585:32;;3655:7;3648:4;3644:2;3640:13;3636:27;3626:55;;3677:1;3674;3667:12;3626:55;3717:2;3704:16;3743:2;3735:6;3732:14;3729:34;;;3759:1;3756;3749:12;3729:34;3814:7;3807:4;3797:6;3794:1;3790:14;3786:2;3782:23;3778:34;3775:47;3772:67;;;3835:1;3832;3825:12;3772:67;3866:4;3858:13;;;;-1:-1:-1;3890:6:1;-1:-1:-1;3915:37:1;;3931:20;;;-1:-1:-1;3915:37:1;:::i;:::-;3905:47;;3269:689;;;;;:::o;3963:315::-;4028:6;4036;4089:2;4077:9;4068:7;4064:23;4060:32;4057:52;;;4105:1;4102;4095:12;4057:52;4144:9;4131:23;4163:31;4188:5;4163:31;:::i;:::-;4213:5;-1:-1:-1;4237:35:1;4268:2;4253:18;;4237:35;:::i;:::-;4227:45;;3963:315;;;;;:::o;4283:248::-;4351:6;4359;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;-1:-1:-1;;4451:23:1;;;4521:2;4506:18;;;4493:32;;-1:-1:-1;4283:248:1:o;4536:388::-;4604:6;4612;4665:2;4653:9;4644:7;4640:23;4636:32;4633:52;;;4681:1;4678;4671:12;4633:52;4720:9;4707:23;4739:31;4764:5;4739:31;:::i;:::-;4789:5;-1:-1:-1;4846:2:1;4831:18;;4818:32;4859:33;4818:32;4859:33;:::i;:::-;4911:7;4901:17;;;4536:388;;;;;:::o;4929:356::-;5131:2;5113:21;;;5150:18;;;5143:30;5209:34;5204:2;5189:18;;5182:62;5276:2;5261:18;;4929:356::o;5290:380::-;5369:1;5365:12;;;;5412;;;5433:61;;5487:4;5479:6;5475:17;5465:27;;5433:61;5540:2;5532:6;5529:14;5509:18;5506:38;5503:161;;5586:10;5581:3;5577:20;5574:1;5567:31;5621:4;5618:1;5611:15;5649:4;5646:1;5639:15;5503:161;;5290:380;;;:::o;6036:127::-;6097:10;6092:3;6088:20;6085:1;6078:31;6128:4;6125:1;6118:15;6152:4;6149:1;6142:15;6168:168;6241:9;;;6272;;6289:15;;;6283:22;;6269:37;6259:71;;6310:18;;:::i;6341:217::-;6381:1;6407;6397:132;;6451:10;6446:3;6442:20;6439:1;6432:31;6486:4;6483:1;6476:15;6514:4;6511:1;6504:15;6397:132;-1:-1:-1;6543:9:1;;6341:217::o;6563:125::-;6628:9;;;6649:10;;;6646:36;;;6662:18;;:::i;7871:127::-;7932:10;7927:3;7923:20;7920:1;7913:31;7963:4;7960:1;7953:15;7987:4;7984:1;7977:15;8003:135;8042:3;8063:17;;;8060:43;;8083:18;;:::i;:::-;-1:-1:-1;8130:1:1;8119:13;;8003:135::o;13289:128::-;13356:9;;;13377:11;;;13374:37;;;13391:18;;:::i;13764:251::-;13834:6;13887:2;13875:9;13866:7;13862:23;13858:32;13855:52;;;13903:1;13900;13893:12;13855:52;13935:9;13929:16;13954:31;13979:5;13954:31;:::i;14020:980::-;14282:4;14330:3;14319:9;14315:19;14361:6;14350:9;14343:25;14387:2;14425:6;14420:2;14409:9;14405:18;14398:34;14468:3;14463:2;14452:9;14448:18;14441:31;14492:6;14527;14521:13;14558:6;14550;14543:22;14596:3;14585:9;14581:19;14574:26;;14635:2;14627:6;14623:15;14609:29;;14656:1;14666:195;14680:6;14677:1;14674:13;14666:195;;;14745:13;;-1:-1:-1;;;;;14741:39:1;14729:52;;14836:15;;;;14801:12;;;;14777:1;14695:9;14666:195;;;-1:-1:-1;;;;;;;14917:32:1;;;;14912:2;14897:18;;14890:60;-1:-1:-1;;;14981:3:1;14966:19;14959:35;14878:3;14020:980;-1:-1:-1;;;14020:980:1:o
Swarm Source
ipfs://57bfb25e0c5109500766349c597593fe33f875e0c14bcafd0912f51ec73ad077
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.