ERC-20
Overview
Max Total Supply
134.965 FREE
Holders
11
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FREEDOM
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-04 */ // Sources flattened with hardhat v2.16.1 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { 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 * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File contracts/FREEDOM.sol pragma solidity ^0.8.0; /** * @title FREEDOM Coin * A coin to deliver freedom to all on America's Birthday * * Freedom for all! But the gimick here is that freedom rewards half each time they are claimed. * Anyone can claim freedom by calling declare_independence() but it can only be called by each address 1x and reward halfs each time. So get it while it lasts! * * @author tw: @SolContractADay */ contract FREEDOM is ERC20{ mapping(address => bool) independent; uint private freedomReward = 17.76 ether; uint private write_time; bool private tea_thrown; IUniswapV2Router02 private uni; bool public constitution_written; constructor(uint _write_time) ERC20("FREEDOM", "FREE"){ uni = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); require(_write_time > block.timestamp, "invalid write_time"); write_time = _write_time; _approve(address(this), address(uni), 100 ether); _mint(address(this), 100 ether); } /** * @dev function to add liquidity. Can only be done once */ function throw_tea_into_the_harbor() external payable { require(!tea_thrown, "Already preformed"); tea_thrown = true; uni.addLiquidityETH {value:msg.value} ( address(this), 100 ether, 0, 0, msg.sender, block.timestamp+30 ); } modifier only_constitution_written(){ if(!constitution_written && block.timestamp >= write_time){ constitution_written = true; } require(constitution_written, "You cannot claim until the constitution is drafted"); _; } /** * @dev function to get some free freedom. But it halfs every time. So get it while it lasts! ALso 1 address can only claim 1x */ function declare_independence() external only_constitution_written{ // require the address has not yet claimed and the freedomReward != 0 require(!independent[msg.sender], "You've already declared independence"); require(freedomReward > 0, "Rewards have already been claimed"); // note the user's reward and set their indepenence state to true as well as half the freedom reward uint reward = freedomReward; independent[msg.sender] = true; freedomReward = freedomReward/2; // mint last so as to avoid re-entrancy _mint(msg.sender, reward); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_write_time","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"constitution_written","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"declare_independence","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"throw_tea_into_the_harbor","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267f67831e74af000006006553480156200001d57600080fd5b50604051620027b2380380620027b283398181016040528101906200004391906200055e565b6040518060400160405280600781526020017f46524545444f4d000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46524545000000000000000000000000000000000000000000000000000000008152508160039081620000c0919062000800565b508060049081620000d2919062000800565b505050737a250d5630b4cf539739df2c5dacb4c659f2488d600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504281116200016f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001669062000948565b60405180910390fd5b80600781905550620001b430600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1668056bc75e2d63100000620001d660201b60201c565b620001cf3068056bc75e2d63100000620003a760201b60201c565b5062000ba4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000248576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023f90620009e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b19062000a78565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200039a919062000aab565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004109062000b18565b60405180910390fd5b6200042d600083836200051460201b60201c565b806002600082825462000441919062000b69565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004f4919062000aab565b60405180910390a362000510600083836200051960201b60201c565b5050565b505050565b505050565b600080fd5b6000819050919050565b620005388162000523565b81146200054457600080fd5b50565b60008151905062000558816200052d565b92915050565b6000602082840312156200057757620005766200051e565b5b6000620005878482850162000547565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061257607f821691505b602082108103620006285762000627620005ca565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000653565b6200069e868362000653565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006e1620006db620006d58462000523565b620006b6565b62000523565b9050919050565b6000819050919050565b620006fd83620006c0565b620007156200070c82620006e8565b84845462000660565b825550505050565b600090565b6200072c6200071d565b62000739818484620006f2565b505050565b5b8181101562000761576200075560008262000722565b6001810190506200073f565b5050565b601f821115620007b0576200077a816200062e565b620007858462000643565b8101602085101562000795578190505b620007ad620007a48562000643565b8301826200073e565b50505b505050565b600082821c905092915050565b6000620007d560001984600802620007b5565b1980831691505092915050565b6000620007f08383620007c2565b9150826002028217905092915050565b6200080b8262000590565b67ffffffffffffffff8111156200082757620008266200059b565b5b620008338254620005f9565b6200084082828562000765565b600060209050601f83116001811462000878576000841562000863578287015190505b6200086f8582620007e2565b865550620008df565b601f19841662000888866200062e565b60005b82811015620008b2578489015182556001820191506020850194506020810190506200088b565b86831015620008d25784890151620008ce601f891682620007c2565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f696e76616c69642077726974655f74696d650000000000000000000000000000600082015250565b600062000930601283620008e7565b91506200093d82620008f8565b602082019050919050565b60006020820190508181036000830152620009638162000921565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620009c8602483620008e7565b9150620009d5826200096a565b604082019050919050565b60006020820190508181036000830152620009fb81620009b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000a60602283620008e7565b915062000a6d8262000a02565b604082019050919050565b6000602082019050818103600083015262000a938162000a51565b9050919050565b62000aa58162000523565b82525050565b600060208201905062000ac2600083018462000a9a565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b00601f83620008e7565b915062000b0d8262000ac8565b602082019050919050565b6000602082019050818103600083015262000b338162000af1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b768262000523565b915062000b838362000523565b925082820190508082111562000b9e5762000b9d62000b3a565b5b92915050565b611bfe8062000bb46000396000f3fe6080604052600436106100dd5760003560e01c806389ce734e1161007f578063a9059cbb11610059578063a9059cbb146102ea578063c54951e014610327578063d8ae38bd14610331578063dd62ed3e14610348576100dd565b806389ce734e1461025757806395d89b4114610282578063a457c2d7146102ad576100dd565b806323b872dd116100bb57806323b872dd14610175578063313ce567146101b257806339509351146101dd57806370a082311461021a576100dd565b806306fdde03146100e2578063095ea7b31461010d57806318160ddd1461014a575b600080fd5b3480156100ee57600080fd5b506100f7610385565b6040516101049190611095565b60405180910390f35b34801561011957600080fd5b50610134600480360381019061012f9190611150565b610417565b60405161014191906111ab565b60405180910390f35b34801561015657600080fd5b5061015f61043a565b60405161016c91906111d5565b60405180910390f35b34801561018157600080fd5b5061019c600480360381019061019791906111f0565b610444565b6040516101a991906111ab565b60405180910390f35b3480156101be57600080fd5b506101c7610473565b6040516101d4919061125f565b60405180910390f35b3480156101e957600080fd5b5061020460048036038101906101ff9190611150565b61047c565b60405161021191906111ab565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c919061127a565b6104b3565b60405161024e91906111d5565b60405180910390f35b34801561026357600080fd5b5061026c6104fb565b60405161027991906111ab565b60405180910390f35b34801561028e57600080fd5b5061029761050e565b6040516102a49190611095565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190611150565b6105a0565b6040516102e191906111ab565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190611150565b610617565b60405161031e91906111ab565b60405180910390f35b61032f61063a565b005b34801561033d57600080fd5b50610346610769565b005b34801561035457600080fd5b5061036f600480360381019061036a91906112a7565b61094b565b60405161037c91906111d5565b60405180910390f35b60606003805461039490611316565b80601f01602080910402602001604051908101604052809291908181526020018280546103c090611316565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b6000806104226109d2565b905061042f8185856109da565b600191505092915050565b6000600254905090565b60008061044f6109d2565b905061045c858285610ba3565b610467858585610c2f565b60019150509392505050565b60006012905090565b6000806104876109d2565b90506104a8818585610499858961094b565b6104a39190611376565b6109da565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600860159054906101000a900460ff1681565b60606004805461051d90611316565b80601f016020809104026020016040519081016040528092919081815260200182805461054990611316565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b6000806105ab6109d2565b905060006105b9828661094b565b9050838110156105fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f59061141c565b60405180910390fd5b61060b82868684036109da565b60019250505092915050565b6000806106226109d2565b905061062f818585610c2f565b600191505092915050565b600860009054906101000a900460ff161561068a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068190611488565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719343068056bc75e2d6310000060008033601e426107009190611376565b6040518863ffffffff1660e01b815260040161072196959493929190611537565b60606040518083038185885af115801561073f573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061076491906115ad565b505050565b600860159054906101000a900460ff1615801561078857506007544210155b156107a9576001600860156101000a81548160ff0219169083151502179055505b600860159054906101000a900460ff166107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef90611672565b60405180910390fd5b600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087c90611704565b60405180910390fd5b6000600654116108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190611796565b60405180910390fd5b600060065490506001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600260065461093891906117e5565b6006819055506109483382610ea5565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090611888565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf9061191a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9691906111d5565b60405180910390a3505050565b6000610baf848461094b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c295781811015610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611986565b60405180910390fd5b610c2884848484036109da565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590611a18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490611aaa565b60405180910390fd5b610d18838383610ffb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590611b3c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8c91906111d5565b60405180910390a3610e9f848484611000565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90611ba8565b60405180910390fd5b610f2060008383610ffb565b8060026000828254610f329190611376565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fe391906111d5565b60405180910390a3610ff760008383611000565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561103f578082015181840152602081019050611024565b60008484015250505050565b6000601f19601f8301169050919050565b600061106782611005565b6110718185611010565b9350611081818560208601611021565b61108a8161104b565b840191505092915050565b600060208201905081810360008301526110af818461105c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110e7826110bc565b9050919050565b6110f7816110dc565b811461110257600080fd5b50565b600081359050611114816110ee565b92915050565b6000819050919050565b61112d8161111a565b811461113857600080fd5b50565b60008135905061114a81611124565b92915050565b60008060408385031215611167576111666110b7565b5b600061117585828601611105565b92505060206111868582860161113b565b9150509250929050565b60008115159050919050565b6111a581611190565b82525050565b60006020820190506111c0600083018461119c565b92915050565b6111cf8161111a565b82525050565b60006020820190506111ea60008301846111c6565b92915050565b600080600060608486031215611209576112086110b7565b5b600061121786828701611105565b935050602061122886828701611105565b92505060406112398682870161113b565b9150509250925092565b600060ff82169050919050565b61125981611243565b82525050565b60006020820190506112746000830184611250565b92915050565b6000602082840312156112905761128f6110b7565b5b600061129e84828501611105565b91505092915050565b600080604083850312156112be576112bd6110b7565b5b60006112cc85828601611105565b92505060206112dd85828601611105565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061132e57607f821691505b602082108103611341576113406112e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113818261111a565b915061138c8361111a565b92508282019050808211156113a4576113a3611347565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611406602583611010565b9150611411826113aa565b604082019050919050565b60006020820190508181036000830152611435816113f9565b9050919050565b7f416c726561647920707265666f726d6564000000000000000000000000000000600082015250565b6000611472601183611010565b915061147d8261143c565b602082019050919050565b600060208201905081810360008301526114a181611465565b9050919050565b6114b1816110dc565b82525050565b6000819050919050565b6000819050919050565b60006114e66114e16114dc846114b7565b6114c1565b61111a565b9050919050565b6114f6816114cb565b82525050565b6000819050919050565b600061152161151c611517846114fc565b6114c1565b61111a565b9050919050565b61153181611506565b82525050565b600060c08201905061154c60008301896114a8565b61155960208301886114ed565b6115666040830187611528565b6115736060830186611528565b61158060808301856114a8565b61158d60a08301846111c6565b979650505050505050565b6000815190506115a781611124565b92915050565b6000806000606084860312156115c6576115c56110b7565b5b60006115d486828701611598565b93505060206115e586828701611598565b92505060406115f686828701611598565b9150509250925092565b7f596f752063616e6e6f7420636c61696d20756e74696c2074686520636f6e737460008201527f69747574696f6e20697320647261667465640000000000000000000000000000602082015250565b600061165c603283611010565b915061166782611600565b604082019050919050565b6000602082019050818103600083015261168b8161164f565b9050919050565b7f596f7527766520616c7265616479206465636c6172656420696e646570656e6460008201527f656e636500000000000000000000000000000000000000000000000000000000602082015250565b60006116ee602483611010565b91506116f982611692565b604082019050919050565b6000602082019050818103600083015261171d816116e1565b9050919050565b7f52657761726473206861766520616c7265616479206265656e20636c61696d6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000611780602183611010565b915061178b82611724565b604082019050919050565b600060208201905081810360008301526117af81611773565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006117f08261111a565b91506117fb8361111a565b92508261180b5761180a6117b6565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611872602483611010565b915061187d82611816565b604082019050919050565b600060208201905081810360008301526118a181611865565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611904602283611010565b915061190f826118a8565b604082019050919050565b60006020820190508181036000830152611933816118f7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611970601d83611010565b915061197b8261193a565b602082019050919050565b6000602082019050818103600083015261199f81611963565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a02602583611010565b9150611a0d826119a6565b604082019050919050565b60006020820190508181036000830152611a31816119f5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a94602383611010565b9150611a9f82611a38565b604082019050919050565b60006020820190508181036000830152611ac381611a87565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b26602683611010565b9150611b3182611aca565b604082019050919050565b60006020820190508181036000830152611b5581611b19565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611b92601f83611010565b9150611b9d82611b5c565b602082019050919050565b60006020820190508181036000830152611bc181611b85565b905091905056fea2646970667358221220962ce58e726c98188c648ac6c58d130409f22d519fbd338f3e462bbb43e1fd5464736f6c634300081200330000000000000000000000000000000000000000000000000000000064a46c30
Deployed Bytecode
0x6080604052600436106100dd5760003560e01c806389ce734e1161007f578063a9059cbb11610059578063a9059cbb146102ea578063c54951e014610327578063d8ae38bd14610331578063dd62ed3e14610348576100dd565b806389ce734e1461025757806395d89b4114610282578063a457c2d7146102ad576100dd565b806323b872dd116100bb57806323b872dd14610175578063313ce567146101b257806339509351146101dd57806370a082311461021a576100dd565b806306fdde03146100e2578063095ea7b31461010d57806318160ddd1461014a575b600080fd5b3480156100ee57600080fd5b506100f7610385565b6040516101049190611095565b60405180910390f35b34801561011957600080fd5b50610134600480360381019061012f9190611150565b610417565b60405161014191906111ab565b60405180910390f35b34801561015657600080fd5b5061015f61043a565b60405161016c91906111d5565b60405180910390f35b34801561018157600080fd5b5061019c600480360381019061019791906111f0565b610444565b6040516101a991906111ab565b60405180910390f35b3480156101be57600080fd5b506101c7610473565b6040516101d4919061125f565b60405180910390f35b3480156101e957600080fd5b5061020460048036038101906101ff9190611150565b61047c565b60405161021191906111ab565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c919061127a565b6104b3565b60405161024e91906111d5565b60405180910390f35b34801561026357600080fd5b5061026c6104fb565b60405161027991906111ab565b60405180910390f35b34801561028e57600080fd5b5061029761050e565b6040516102a49190611095565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190611150565b6105a0565b6040516102e191906111ab565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190611150565b610617565b60405161031e91906111ab565b60405180910390f35b61032f61063a565b005b34801561033d57600080fd5b50610346610769565b005b34801561035457600080fd5b5061036f600480360381019061036a91906112a7565b61094b565b60405161037c91906111d5565b60405180910390f35b60606003805461039490611316565b80601f01602080910402602001604051908101604052809291908181526020018280546103c090611316565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b6000806104226109d2565b905061042f8185856109da565b600191505092915050565b6000600254905090565b60008061044f6109d2565b905061045c858285610ba3565b610467858585610c2f565b60019150509392505050565b60006012905090565b6000806104876109d2565b90506104a8818585610499858961094b565b6104a39190611376565b6109da565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600860159054906101000a900460ff1681565b60606004805461051d90611316565b80601f016020809104026020016040519081016040528092919081815260200182805461054990611316565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b6000806105ab6109d2565b905060006105b9828661094b565b9050838110156105fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f59061141c565b60405180910390fd5b61060b82868684036109da565b60019250505092915050565b6000806106226109d2565b905061062f818585610c2f565b600191505092915050565b600860009054906101000a900460ff161561068a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068190611488565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719343068056bc75e2d6310000060008033601e426107009190611376565b6040518863ffffffff1660e01b815260040161072196959493929190611537565b60606040518083038185885af115801561073f573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061076491906115ad565b505050565b600860159054906101000a900460ff1615801561078857506007544210155b156107a9576001600860156101000a81548160ff0219169083151502179055505b600860159054906101000a900460ff166107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef90611672565b60405180910390fd5b600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087c90611704565b60405180910390fd5b6000600654116108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190611796565b60405180910390fd5b600060065490506001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600260065461093891906117e5565b6006819055506109483382610ea5565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090611888565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf9061191a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9691906111d5565b60405180910390a3505050565b6000610baf848461094b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c295781811015610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611986565b60405180910390fd5b610c2884848484036109da565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590611a18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490611aaa565b60405180910390fd5b610d18838383610ffb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590611b3c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8c91906111d5565b60405180910390a3610e9f848484611000565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90611ba8565b60405180910390fd5b610f2060008383610ffb565b8060026000828254610f329190611376565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fe391906111d5565b60405180910390a3610ff760008383611000565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561103f578082015181840152602081019050611024565b60008484015250505050565b6000601f19601f8301169050919050565b600061106782611005565b6110718185611010565b9350611081818560208601611021565b61108a8161104b565b840191505092915050565b600060208201905081810360008301526110af818461105c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110e7826110bc565b9050919050565b6110f7816110dc565b811461110257600080fd5b50565b600081359050611114816110ee565b92915050565b6000819050919050565b61112d8161111a565b811461113857600080fd5b50565b60008135905061114a81611124565b92915050565b60008060408385031215611167576111666110b7565b5b600061117585828601611105565b92505060206111868582860161113b565b9150509250929050565b60008115159050919050565b6111a581611190565b82525050565b60006020820190506111c0600083018461119c565b92915050565b6111cf8161111a565b82525050565b60006020820190506111ea60008301846111c6565b92915050565b600080600060608486031215611209576112086110b7565b5b600061121786828701611105565b935050602061122886828701611105565b92505060406112398682870161113b565b9150509250925092565b600060ff82169050919050565b61125981611243565b82525050565b60006020820190506112746000830184611250565b92915050565b6000602082840312156112905761128f6110b7565b5b600061129e84828501611105565b91505092915050565b600080604083850312156112be576112bd6110b7565b5b60006112cc85828601611105565b92505060206112dd85828601611105565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061132e57607f821691505b602082108103611341576113406112e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113818261111a565b915061138c8361111a565b92508282019050808211156113a4576113a3611347565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611406602583611010565b9150611411826113aa565b604082019050919050565b60006020820190508181036000830152611435816113f9565b9050919050565b7f416c726561647920707265666f726d6564000000000000000000000000000000600082015250565b6000611472601183611010565b915061147d8261143c565b602082019050919050565b600060208201905081810360008301526114a181611465565b9050919050565b6114b1816110dc565b82525050565b6000819050919050565b6000819050919050565b60006114e66114e16114dc846114b7565b6114c1565b61111a565b9050919050565b6114f6816114cb565b82525050565b6000819050919050565b600061152161151c611517846114fc565b6114c1565b61111a565b9050919050565b61153181611506565b82525050565b600060c08201905061154c60008301896114a8565b61155960208301886114ed565b6115666040830187611528565b6115736060830186611528565b61158060808301856114a8565b61158d60a08301846111c6565b979650505050505050565b6000815190506115a781611124565b92915050565b6000806000606084860312156115c6576115c56110b7565b5b60006115d486828701611598565b93505060206115e586828701611598565b92505060406115f686828701611598565b9150509250925092565b7f596f752063616e6e6f7420636c61696d20756e74696c2074686520636f6e737460008201527f69747574696f6e20697320647261667465640000000000000000000000000000602082015250565b600061165c603283611010565b915061166782611600565b604082019050919050565b6000602082019050818103600083015261168b8161164f565b9050919050565b7f596f7527766520616c7265616479206465636c6172656420696e646570656e6460008201527f656e636500000000000000000000000000000000000000000000000000000000602082015250565b60006116ee602483611010565b91506116f982611692565b604082019050919050565b6000602082019050818103600083015261171d816116e1565b9050919050565b7f52657761726473206861766520616c7265616479206265656e20636c61696d6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000611780602183611010565b915061178b82611724565b604082019050919050565b600060208201905081810360008301526117af81611773565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006117f08261111a565b91506117fb8361111a565b92508261180b5761180a6117b6565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611872602483611010565b915061187d82611816565b604082019050919050565b600060208201905081810360008301526118a181611865565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611904602283611010565b915061190f826118a8565b604082019050919050565b60006020820190508181036000830152611933816118f7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611970601d83611010565b915061197b8261193a565b602082019050919050565b6000602082019050818103600083015261199f81611963565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a02602583611010565b9150611a0d826119a6565b604082019050919050565b60006020820190508181036000830152611a31816119f5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a94602383611010565b9150611a9f82611a38565b604082019050919050565b60006020820190508181036000830152611ac381611a87565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b26602683611010565b9150611b3182611aca565b604082019050919050565b60006020820190508181036000830152611b5581611b19565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611b92601f83611010565b9150611b9d82611b5c565b602082019050919050565b60006020820190508181036000830152611bc181611b85565b905091905056fea2646970667358221220962ce58e726c98188c648ac6c58d130409f22d519fbd338f3e462bbb43e1fd5464736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000064a46c30
-----Decoded View---------------
Arg [0] : _write_time (uint256): 1688497200
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000064a46c30
Deployed Bytecode Sourcemap
23286:2237:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6737:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9097:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7866:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9878:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7708:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10548:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8037:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23511:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6956:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11289:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8370:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24008:443;;;:::i;:::-;;24889:631;;;;;;;;;;;;;:::i;:::-;;8626:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6737:100;6791:13;6824:5;6817:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6737:100;:::o;9097:201::-;9180:4;9197:13;9213:12;:10;:12::i;:::-;9197:28;;9236:32;9245:5;9252:7;9261:6;9236:8;:32::i;:::-;9286:4;9279:11;;;9097:201;;;;:::o;7866:108::-;7927:7;7954:12;;7947:19;;7866:108;:::o;9878:261::-;9975:4;9992:15;10010:12;:10;:12::i;:::-;9992:30;;10033:38;10049:4;10055:7;10064:6;10033:15;:38::i;:::-;10082:27;10092:4;10098:2;10102:6;10082:9;:27::i;:::-;10127:4;10120:11;;;9878:261;;;;;:::o;7708:93::-;7766:5;7791:2;7784:9;;7708:93;:::o;10548:238::-;10636:4;10653:13;10669:12;:10;:12::i;:::-;10653:28;;10692:64;10701:5;10708:7;10745:10;10717:25;10727:5;10734:7;10717:9;:25::i;:::-;:38;;;;:::i;:::-;10692:8;:64::i;:::-;10774:4;10767:11;;;10548:238;;;;:::o;8037:127::-;8111:7;8138:9;:18;8148:7;8138:18;;;;;;;;;;;;;;;;8131:25;;8037:127;;;:::o;23511:32::-;;;;;;;;;;;;;:::o;6956:104::-;7012:13;7045:7;7038:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6956:104;:::o;11289:436::-;11382:4;11399:13;11415:12;:10;:12::i;:::-;11399:28;;11438:24;11465:25;11475:5;11482:7;11465:9;:25::i;:::-;11438:52;;11529:15;11509:16;:35;;11501:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11622:60;11631:5;11638:7;11666:15;11647:16;:34;11622:8;:60::i;:::-;11713:4;11706:11;;;;11289:436;;;;:::o;8370:193::-;8449:4;8466:13;8482:12;:10;:12::i;:::-;8466:28;;8505;8515:5;8522:2;8526:6;8505:9;:28::i;:::-;8551:4;8544:11;;;8370:193;;;;:::o;24008:443::-;24082:10;;;;;;;;;;;24081:11;24073:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;24138:4;24125:10;;:17;;;;;;;;;;;;;;;;;;24153:3;;;;;;;;;;;:19;;;24189:9;24245:4;24265:9;24289:1;24367;24383:10;24424:2;24408:15;:18;;;;:::i;:::-;24153:288;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;24008:443::o;24889:631::-;24510:20;;;;;;;;;;;24509:21;:54;;;;;24553:10;;24534:15;:29;;24509:54;24506:112;;;24602:4;24579:20;;:27;;;;;;;;;;;;;;;;;;24506:112;24638:20;;;;;;;;;;;24630:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;25054:11:::1;:23;25066:10;25054:23;;;;;;;;;;;;;;;;;;;;;;;;;25053:24;25045:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25153:1;25137:13;;:17;25129:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;25315:11;25329:13;;25315:27;;25379:4;25353:11;:23;25365:10;25353:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;25424:1;25410:13;;:15;;;;:::i;:::-;25394:13;:31;;;;25487:25;25493:10;25505:6;25487:5;:25::i;:::-;24955:565;24889:631::o:0;8626:151::-;8715:7;8742:11;:18;8754:5;8742:18;;;;;;;;;;;;;;;:27;8761:7;8742:27;;;;;;;;;;;;;;;;8735:34;;8626:151;;;;:::o;4371:98::-;4424:7;4451:10;4444:17;;4371:98;:::o;15282:346::-;15401:1;15384:19;;:5;:19;;;15376:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15482:1;15463:21;;:7;:21;;;15455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15566:6;15536:11;:18;15548:5;15536:18;;;;;;;;;;;;;;;:27;15555:7;15536:27;;;;;;;;;;;;;;;:36;;;;15604:7;15588:32;;15597:5;15588:32;;;15613:6;15588:32;;;;;;:::i;:::-;;;;;;;;15282:346;;;:::o;15919:419::-;16020:24;16047:25;16057:5;16064:7;16047:9;:25::i;:::-;16020:52;;16107:17;16087:16;:37;16083:248;;16169:6;16149:16;:26;;16141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16253:51;16262:5;16269:7;16297:6;16278:16;:25;16253:8;:51::i;:::-;16083:248;16009:329;15919:419;;;:::o;12195:806::-;12308:1;12292:18;;:4;:18;;;12284:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12385:1;12371:16;;:2;:16;;;12363:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12440:38;12461:4;12467:2;12471:6;12440:20;:38::i;:::-;12491:19;12513:9;:15;12523:4;12513:15;;;;;;;;;;;;;;;;12491:37;;12562:6;12547:11;:21;;12539:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12679:6;12665:11;:20;12647:9;:15;12657:4;12647:15;;;;;;;;;;;;;;;:38;;;;12882:6;12865:9;:13;12875:2;12865:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12932:2;12917:26;;12926:4;12917:26;;;12936:6;12917:26;;;;;;:::i;:::-;;;;;;;;12956:37;12976:4;12982:2;12986:6;12956:19;:37::i;:::-;12273:728;12195:806;;;:::o;13288:548::-;13391:1;13372:21;;:7;:21;;;13364:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13442:49;13471:1;13475:7;13484:6;13442:20;:49::i;:::-;13520:6;13504:12;;:22;;;;;;;:::i;:::-;;;;;;;;13697:6;13675:9;:18;13685:7;13675:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13751:7;13730:37;;13747:1;13730:37;;;13760:6;13730:37;;;;;;:::i;:::-;;;;;;;;13780:48;13808:1;13812:7;13821:6;13780:19;:48::i;:::-;13288:548;;:::o;16938:91::-;;;;:::o;17633:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:180::-;6228:77;6225:1;6218:88;6325:4;6322:1;6315:15;6349:4;6346:1;6339:15;6366:191;6406:3;6425:20;6443:1;6425:20;:::i;:::-;6420:25;;6459:20;6477:1;6459:20;:::i;:::-;6454:25;;6502:1;6499;6495:9;6488:16;;6523:3;6520:1;6517:10;6514:36;;;6530:18;;:::i;:::-;6514:36;6366:191;;;;:::o;6563:224::-;6703:34;6699:1;6691:6;6687:14;6680:58;6772:7;6767:2;6759:6;6755:15;6748:32;6563:224;:::o;6793:366::-;6935:3;6956:67;7020:2;7015:3;6956:67;:::i;:::-;6949:74;;7032:93;7121:3;7032:93;:::i;:::-;7150:2;7145:3;7141:12;7134:19;;6793:366;;;:::o;7165:419::-;7331:4;7369:2;7358:9;7354:18;7346:26;;7418:9;7412:4;7408:20;7404:1;7393:9;7389:17;7382:47;7446:131;7572:4;7446:131;:::i;:::-;7438:139;;7165:419;;;:::o;7590:167::-;7730:19;7726:1;7718:6;7714:14;7707:43;7590:167;:::o;7763:366::-;7905:3;7926:67;7990:2;7985:3;7926:67;:::i;:::-;7919:74;;8002:93;8091:3;8002:93;:::i;:::-;8120:2;8115:3;8111:12;8104:19;;7763:366;;;:::o;8135:419::-;8301:4;8339:2;8328:9;8324:18;8316:26;;8388:9;8382:4;8378:20;8374:1;8363:9;8359:17;8352:47;8416:131;8542:4;8416:131;:::i;:::-;8408:139;;8135:419;;;:::o;8560:118::-;8647:24;8665:5;8647:24;:::i;:::-;8642:3;8635:37;8560:118;;:::o;8684:105::-;8749:7;8778:5;8767:16;;8684:105;;;:::o;8795:60::-;8823:3;8844:5;8837:12;;8795:60;;;:::o;8861:198::-;8939:9;8972:81;8990:62;8999:52;9045:5;8999:52;:::i;:::-;8990:62;:::i;:::-;8972:81;:::i;:::-;8959:94;;8861:198;;;:::o;9065:187::-;9180:65;9239:5;9180:65;:::i;:::-;9175:3;9168:78;9065:187;;:::o;9258:85::-;9303:7;9332:5;9321:16;;9258:85;;;:::o;9349:158::-;9407:9;9440:61;9458:42;9467:32;9493:5;9467:32;:::i;:::-;9458:42;:::i;:::-;9440:61;:::i;:::-;9427:74;;9349:158;;;:::o;9513:147::-;9608:45;9647:5;9608:45;:::i;:::-;9603:3;9596:58;9513:147;;:::o;9666:863::-;9943:4;9981:3;9970:9;9966:19;9958:27;;9995:71;10063:1;10052:9;10048:17;10039:6;9995:71;:::i;:::-;10076:100;10172:2;10161:9;10157:18;10148:6;10076:100;:::i;:::-;10186:80;10262:2;10251:9;10247:18;10238:6;10186:80;:::i;:::-;10276;10352:2;10341:9;10337:18;10328:6;10276:80;:::i;:::-;10366:73;10434:3;10423:9;10419:19;10410:6;10366:73;:::i;:::-;10449;10517:3;10506:9;10502:19;10493:6;10449:73;:::i;:::-;9666:863;;;;;;;;;:::o;10535:143::-;10592:5;10623:6;10617:13;10608:22;;10639:33;10666:5;10639:33;:::i;:::-;10535:143;;;;:::o;10684:663::-;10772:6;10780;10788;10837:2;10825:9;10816:7;10812:23;10808:32;10805:119;;;10843:79;;:::i;:::-;10805:119;10963:1;10988:64;11044:7;11035:6;11024:9;11020:22;10988:64;:::i;:::-;10978:74;;10934:128;11101:2;11127:64;11183:7;11174:6;11163:9;11159:22;11127:64;:::i;:::-;11117:74;;11072:129;11240:2;11266:64;11322:7;11313:6;11302:9;11298:22;11266:64;:::i;:::-;11256:74;;11211:129;10684:663;;;;;:::o;11353:237::-;11493:34;11489:1;11481:6;11477:14;11470:58;11562:20;11557:2;11549:6;11545:15;11538:45;11353:237;:::o;11596:366::-;11738:3;11759:67;11823:2;11818:3;11759:67;:::i;:::-;11752:74;;11835:93;11924:3;11835:93;:::i;:::-;11953:2;11948:3;11944:12;11937:19;;11596:366;;;:::o;11968:419::-;12134:4;12172:2;12161:9;12157:18;12149:26;;12221:9;12215:4;12211:20;12207:1;12196:9;12192:17;12185:47;12249:131;12375:4;12249:131;:::i;:::-;12241:139;;11968:419;;;:::o;12393:223::-;12533:34;12529:1;12521:6;12517:14;12510:58;12602:6;12597:2;12589:6;12585:15;12578:31;12393:223;:::o;12622:366::-;12764:3;12785:67;12849:2;12844:3;12785:67;:::i;:::-;12778:74;;12861:93;12950:3;12861:93;:::i;:::-;12979:2;12974:3;12970:12;12963:19;;12622:366;;;:::o;12994:419::-;13160:4;13198:2;13187:9;13183:18;13175:26;;13247:9;13241:4;13237:20;13233:1;13222:9;13218:17;13211:47;13275:131;13401:4;13275:131;:::i;:::-;13267:139;;12994:419;;;:::o;13419:220::-;13559:34;13555:1;13547:6;13543:14;13536:58;13628:3;13623:2;13615:6;13611:15;13604:28;13419:220;:::o;13645:366::-;13787:3;13808:67;13872:2;13867:3;13808:67;:::i;:::-;13801:74;;13884:93;13973:3;13884:93;:::i;:::-;14002:2;13997:3;13993:12;13986:19;;13645:366;;;:::o;14017:419::-;14183:4;14221:2;14210:9;14206:18;14198:26;;14270:9;14264:4;14260:20;14256:1;14245:9;14241:17;14234:47;14298:131;14424:4;14298:131;:::i;:::-;14290:139;;14017:419;;;:::o;14442:180::-;14490:77;14487:1;14480:88;14587:4;14584:1;14577:15;14611:4;14608:1;14601:15;14628:185;14668:1;14685:20;14703:1;14685:20;:::i;:::-;14680:25;;14719:20;14737:1;14719:20;:::i;:::-;14714:25;;14758:1;14748:35;;14763:18;;:::i;:::-;14748:35;14805:1;14802;14798:9;14793:14;;14628:185;;;;:::o;14819:223::-;14959:34;14955:1;14947:6;14943:14;14936:58;15028:6;15023:2;15015:6;15011:15;15004:31;14819:223;:::o;15048:366::-;15190:3;15211:67;15275:2;15270:3;15211:67;:::i;:::-;15204:74;;15287:93;15376:3;15287:93;:::i;:::-;15405:2;15400:3;15396:12;15389:19;;15048:366;;;:::o;15420:419::-;15586:4;15624:2;15613:9;15609:18;15601:26;;15673:9;15667:4;15663:20;15659:1;15648:9;15644:17;15637:47;15701:131;15827:4;15701:131;:::i;:::-;15693:139;;15420:419;;;:::o;15845:221::-;15985:34;15981:1;15973:6;15969:14;15962:58;16054:4;16049:2;16041:6;16037:15;16030:29;15845:221;:::o;16072:366::-;16214:3;16235:67;16299:2;16294:3;16235:67;:::i;:::-;16228:74;;16311:93;16400:3;16311:93;:::i;:::-;16429:2;16424:3;16420:12;16413:19;;16072:366;;;:::o;16444:419::-;16610:4;16648:2;16637:9;16633:18;16625:26;;16697:9;16691:4;16687:20;16683:1;16672:9;16668:17;16661:47;16725:131;16851:4;16725:131;:::i;:::-;16717:139;;16444:419;;;:::o;16869:179::-;17009:31;17005:1;16997:6;16993:14;16986:55;16869:179;:::o;17054:366::-;17196:3;17217:67;17281:2;17276:3;17217:67;:::i;:::-;17210:74;;17293:93;17382:3;17293:93;:::i;:::-;17411:2;17406:3;17402:12;17395:19;;17054:366;;;:::o;17426:419::-;17592:4;17630:2;17619:9;17615:18;17607:26;;17679:9;17673:4;17669:20;17665:1;17654:9;17650:17;17643:47;17707:131;17833:4;17707:131;:::i;:::-;17699:139;;17426:419;;;:::o;17851:224::-;17991:34;17987:1;17979:6;17975:14;17968:58;18060:7;18055:2;18047:6;18043:15;18036:32;17851:224;:::o;18081:366::-;18223:3;18244:67;18308:2;18303:3;18244:67;:::i;:::-;18237:74;;18320:93;18409:3;18320:93;:::i;:::-;18438:2;18433:3;18429:12;18422:19;;18081:366;;;:::o;18453:419::-;18619:4;18657:2;18646:9;18642:18;18634:26;;18706:9;18700:4;18696:20;18692:1;18681:9;18677:17;18670:47;18734:131;18860:4;18734:131;:::i;:::-;18726:139;;18453:419;;;:::o;18878:222::-;19018:34;19014:1;19006:6;19002:14;18995:58;19087:5;19082:2;19074:6;19070:15;19063:30;18878:222;:::o;19106:366::-;19248:3;19269:67;19333:2;19328:3;19269:67;:::i;:::-;19262:74;;19345:93;19434:3;19345:93;:::i;:::-;19463:2;19458:3;19454:12;19447:19;;19106:366;;;:::o;19478:419::-;19644:4;19682:2;19671:9;19667:18;19659:26;;19731:9;19725:4;19721:20;19717:1;19706:9;19702:17;19695:47;19759:131;19885:4;19759:131;:::i;:::-;19751:139;;19478:419;;;:::o;19903:225::-;20043:34;20039:1;20031:6;20027:14;20020:58;20112:8;20107:2;20099:6;20095:15;20088:33;19903:225;:::o;20134:366::-;20276:3;20297:67;20361:2;20356:3;20297:67;:::i;:::-;20290:74;;20373:93;20462:3;20373:93;:::i;:::-;20491:2;20486:3;20482:12;20475:19;;20134:366;;;:::o;20506:419::-;20672:4;20710:2;20699:9;20695:18;20687:26;;20759:9;20753:4;20749:20;20745:1;20734:9;20730:17;20723:47;20787:131;20913:4;20787:131;:::i;:::-;20779:139;;20506:419;;;:::o;20931:181::-;21071:33;21067:1;21059:6;21055:14;21048:57;20931:181;:::o;21118:366::-;21260:3;21281:67;21345:2;21340:3;21281:67;:::i;:::-;21274:74;;21357:93;21446:3;21357:93;:::i;:::-;21475:2;21470:3;21466:12;21459:19;;21118:366;;;:::o;21490:419::-;21656:4;21694:2;21683:9;21679:18;21671:26;;21743:9;21737:4;21733:20;21729:1;21718:9;21714:17;21707:47;21771:131;21897:4;21771:131;:::i;:::-;21763:139;;21490:419;;;:::o
Swarm Source
ipfs://962ce58e726c98188c648ac6c58d130409f22d519fbd338f3e462bbb43e1fd54
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.