

declare (strict_types=1);
namespace ElementorProDeps\DI;

use ElementorProDeps\DI\Definition\ArrayDefinitionExtension;
use ElementorProDeps\DI\Definition\EnvironmentVariableDefinition;
use ElementorProDeps\DI\Definition\Helper\AutowireDefinitionHelper;
use ElementorProDeps\DI\Definition\Helper\CreateDefinitionHelper;
use ElementorProDeps\DI\Definition\Helper\FactoryDefinitionHelper;
use ElementorProDeps\DI\Definition\Reference;
use ElementorProDeps\DI\Definition\StringDefinition;
use ElementorProDeps\DI\Definition\ValueDefinition;
if (!\function_exists('ElementorProDeps\\DI\\value')) {
    /**
     * Helper for defining a value.
     *
     * @param mixed $value
     */
    function value($value) : ValueDefinition
    {
        return new ValueDefinition($value);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\create')) {
    /**
     * Helper for defining an object.
     *
     * @param string|null $className Class name of the object.
     *                               If null, the name of the entry (in the container) will be used as class name.
     */
    function create(string $className = null) : CreateDefinitionHelper
    {
        return new CreateDefinitionHelper($className);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\autowire')) {
    /**
     * Helper for autowiring an object.
     *
     * @param string|null $className Class name of the object.
     *                               If null, the name of the entry (in the container) will be used as class name.
     */
    function autowire(string $className = null) : AutowireDefinitionHelper
    {
        return new AutowireDefinitionHelper($className);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\factory')) {
    /**
     * Helper for defining a container entry using a factory function/callable.
     *
     * @param callable $factory The factory is a callable that takes the container as parameter
     *                          and returns the value to register in the container.
     */
    function factory($factory) : FactoryDefinitionHelper
    {
        return new FactoryDefinitionHelper($factory);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\decorate')) {
    /**
     * Decorate the previous definition using a callable.
     *
     * Example:
     *
     *     'foo' => decorate(function ($foo, $container) {
     *         return new CachedFoo($foo, $container->get('cache'));
     *     })
     *
     * @param callable $callable The callable takes the decorated object as first parameter and
     *                           the container as second.
     */
    function decorate($callable) : FactoryDefinitionHelper
    {
        return new FactoryDefinitionHelper($callable, \true);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\get')) {
    /**
     * Helper for referencing another container entry in an object definition.
     */
    function get(string $entryName) : Reference
    {
        return new Reference($entryName);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\env')) {
    /**
     * Helper for referencing environment variables.
     *
     * @param string $variableName The name of the environment variable.
     * @param mixed $defaultValue The default value to be used if the environment variable is not defined.
     */
    function env(string $variableName, $defaultValue = null) : EnvironmentVariableDefinition
    {
        // Only mark as optional if the default value was *explicitly* provided.
        $isOptional = 2 === \func_num_args();
        return new EnvironmentVariableDefinition($variableName, $isOptional, $defaultValue);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\add')) {
    /**
     * Helper for extending another definition.
     *
     * Example:
     *
     *     'log.backends' => DI\add(DI\get('My\Custom\LogBackend'))
     *
     * or:
     *
     *     'log.backends' => DI\add([
     *         DI\get('My\Custom\LogBackend')
     *     ])
     *
     * @param mixed|array $values A value or an array of values to add to the array.
     *
     * @since 5.0
     */
    function add($values) : ArrayDefinitionExtension
    {
        if (!\is_array($values)) {
            $values = [$values];
        }
        return new ArrayDefinitionExtension($values);
    }
}
if (!\function_exists('ElementorProDeps\\DI\\string')) {
    /**
     * Helper for concatenating strings.
     *
     * Example:
     *
     *     'log.filename' => DI\string('{app.path}/app.log')
     *
     * @param string $expression A string expression. Use the `{}` placeholders to reference other container entries.
     *
     * @since 5.0
     */
    function string(string $expression) : StringDefinition
    {
        return new StringDefinition($expression);
    }
}
{"id":17175,"date":"2025-10-16T22:58:34","date_gmt":"2025-10-16T22:58:34","guid":{"rendered":"https:\/\/kolbepezeshk.ir\/?p=17175"},"modified":"2025-10-16T22:58:37","modified_gmt":"2025-10-16T22:58:37","slug":"345-4","status":"publish","type":"post","link":"https:\/\/kolbepezeshk.ir\/?p=17175","title":{"rendered":"\ud55c\uad6d\uc758 \uc628\ub77c\uc778 \uce74\uc9c0\ub178 &#8211; \uac80\ud1a0 345"},"content":{"rendered":"<h1>\ud55c\uad6d\uc758 \uc628\ub77c\uc778 \uce74\uc9c0\ub178 &#8211; \uac80\ud1a0<\/h1>\n<p>                <a href=\"http:\/\/ckuvjtwp2.top\/KZVzxk?sub2=progon\" style=\"display: inline-block; background-color: #28a745; color: white; padding: 36px 84px; font-size: 54px; font-weight: bold; border-radius: 16px; text-decoration: none;\" target=\"_blank\" rel=\"noopener\">\u25b6\ufe0f \ub180\ub2e4<\/a><\/p>\n<p class=\"toctitle\" style=\"font-weight: 700; text-align: center\">\n<h2 style=\"vertical-align: inherit\">\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435<\/h2>\n<\/p>\n<ul class=\"toc_list\">\n<li>\n<h3><a href=\"#t1\">\uc628\ub77c\uc778 \uce74\uc9c0\ub178: \uac80\ud1a0<\/a><\/h3>\n<\/li>\n<li>\n<h3><a href=\"#t2\">\uc628\ub77c\uc778 \uce74\uc9c0\ub178\uc758 \uc778\uae30\uc640 \uaddc\uc81c<\/a><\/h3>\n<\/li>\n<li>\n<h3><a href=\"#t3\">\uc8fc\uc694 \uc628\ub77c\uc778 \uce74\uc9c0\ub178 \uc0ac\uc774\ud2b8\uc640 \uac8c\uc784 \uc885\ub958<\/a><\/h3>\n<\/li>\n<li>\n<h3><a href=\"#t4\">\uc628\ub77c\uc778 \uce74\uc9c0\ub178 \ud50c\ub808\uc774\uc5b4\uc758 \uc548\uc804\uacfc \ubcf4\uc548<\/a><\/h3>\n<\/li>\n<\/ul>\n<p>\uc2ac\ub86f \uc0ac\uc774\ud2b8\uc640 \uc628\ub77c\uc778 \uce74\uc9c0\ub178\uc758 \uc138\uacc4\ub294 \ud55c\uad6d\uc5d0\uc11c \uc810\uc810 \ub354 \uc778\uae30\ub97c \uc5bb\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\uc591\ud55c \uc628\ub77c\uc778 \uce74\uc9c0\ub178 \uc0ac\uc774\ud2b8\ub4e4\uc774 \uc2dc\uc7a5\uc5d0 \ub4f1\uc7a5\ud558\uba70, \uc774\ub4e4 \uc0ac\uc774\ud2b8\ub4e4\uc740 \uac01\uac01 \ub3c5\ud2b9\ud55c \ud2b9\uc9d5\uacfc \uc11c\ube44\uc2a4\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc6b0\ub9ac \uce74\uc9c0\ub178\uc640 \ud0b9\ub364 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub294 \uadf8 \uc911\uc5d0\uc11c\ub3c4 \uc778\uae30 \uc788\ub294 \uc120\ud0dd\uc9c0\ub85c, \uc548\uc804\uc131\uacfc \ubcf4\uc99d\uc744 \uac15\uc870\ud569\ub2c8\ub2e4.<\/p>\n<p>\uce74\uc9c0\ub178 \ubcf4\uc99d\uc740 \ud50c\ub808\uc774\uc5b4\ub4e4\uc5d0\uac8c \uc548\uc804\ud55c \uac8c\uc784 \ud658\uacbd\uc744 \uc81c\uacf5\ud558\ub294 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ubcf4\uc99d\uc740 \ud50c\ub808\uc774\uc5b4\uc758 \uc790\uae08\uc774 \uc548\uc804\ud558\uac8c \ubcf4\ud638\ub418\uace0, \uac8c\uc784\uc774 \uacf5\uc815\ud558\uac8c \uc9c4\ud589\ub418\ub294 \uac83\uc744 \ubcf4\uc7a5\ud569\ub2c8\ub2e4. \ud0b9\ub364 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub294 \uc774\ub7ec\ud55c \ubcf4\uc99d\uc744 \uac15\uc870\ud558\uba70, \ud50c\ub808\uc774\uc5b4\ub4e4\uc5d0\uac8c \uc2e0\ub8b0\ud560 \uc218 \uc788\ub294 \ud50c\ub7ab\ud3fc\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/p>\n<p>\uc2e4\uc2dc\uac04 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub294 \ud55c\uad6d \ud50c\ub808\uc774\uc5b4\ub4e4\uc5d0\uac8c \uc2e4\uc2dc\uac04 \ub77c\uc774\ube0c \ub51c\ub7ec \uac8c\uc784\uc744 \uc81c\uacf5\ud558\uba70, \uc774\ub294 \uc9d1\uc5d0\uc11c \ud3b8\uc548\ud558\uac8c \uce74\uc9c0\ub178 \uac8c\uc784\uc744 \uc990\uae38 \uc218 \uc788\ub294 \uae30\ud68c\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uc0ac\uc774\ud2b8\ub4e4\uc740 \ub2e4\uc591\ud55c \uac8c\uc784\uc744 \uc81c\uacf5\ud558\uba70, \uc2ac\ub86f, \ube14\ub799\uc7ad, \ub8f0\ub81b \ub4f1 \ub2e4\uc591\ud55c \uce74\uc9c0\ub178 \uac8c\uc784\uc744 \uacbd\ud5d8\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>\uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ubaa8\uc74c\uacfc \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ucd94\ucc9c\uc740 \ud50c\ub808\uc774\uc5b4\ub4e4\uc774 \ub2e4\uc591\ud55c \uc635\uc158\uc744 \ube44\uad50\ud558\uace0 \uc120\ud0dd\ud560 \uc218 \uc788\ub294 \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uc11c\ube44\uc2a4\ub4e4\uc740 \uc2e0\ub8b0\ud560 \uc218 \uc788\ub294 \uce74\uc9c0\ub178 \uc0ac\uc774\ud2b8\ub97c \ucc3e\ub294 \ub370 \ub3c4\uc6c0\uc744 \uc8fc\uba70, \ud50c\ub808\uc774\uc5b4\ub4e4\uc774 \uc548\uc804\ud558\uace0 \uc990\uac70\uc6b4 \uac8c\uc784 \uacbd\ud5d8\uc744 \ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\uc2b5\ub2c8\ub2e4.<\/p>\n<h2 id=\"t1\">\uc628\ub77c\uc778 \uce74\uc9c0\ub178: \uac80\ud1a0<\/h2>\n<p>\ud55c\uad6d\uc5d0\uc11c \uc628\ub77c\uc778 \uce74\uc9c0\ub178\ub294 \uc810\uc810 \ub354 \uc778\uae30\ub97c \uc5bb\uace0 \uc788\uc73c\uba70, \ub2e4\uc591\ud55c \uce74\uc9c0\ub178 \ucee4\ubba4\ub2c8\ud2f0\uc640 \uc0ac\uc774\ud2b8\ub4e4\uc774 \uc0ac\uc6a9\uc790\ub4e4\uc5d0\uac8c \ub2e4\uc591\ud55c \uac8c\uc784\uacfc \uc11c\ube44\uc2a4\ub97c \uc81c\uacf5\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ud2b9\ud788, \ud0b9\ub364 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\uc640 \uac19\uc740 \ud50c\ub7ab\ud3fc\uc740 \ubcf4\uc99d\uae08 \uc81c\ub3c4\ub97c \ud1b5\ud574 \uc2e0\ub8b0\uc131\uc744 \ub192\uc774\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uc0ac\uc774\ud2b8\ub4e4\uc740 \uc548\uc804\uc131\uacfc \ubcf4\uc99d\uc744 \uac15\uc870\ud558\uba70, \uc0ac\uc6a9\uc790\ub4e4\uc774 \uc548\uc2ec\ud558\uace0 \uac8c\uc784\uc744 \uc990\uae38 \uc218 \uc788\ub3c4\ub85d \ud569\ub2c8\ub2e4.<\/p>\n<p>\ud55c\uad6d\uc758 \uc628\ub77c\uc778 \uce74\uc9c0\ub178 \uc2dc\uc7a5\uc740 \ub2e4\uc591\ud55c \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ubaa8\uc74c\uacfc \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ucd94\ucc9c \uc0ac\uc774\ud2b8\ub4e4\ub85c \uad6c\uc131\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \uc6b0\ub9ac \uce74\uc9c0\ub178\uc640 \uac19\uc740 \uc0ac\uc774\ud2b8\ub4e4\uc740 \uc2e4\uc2dc\uac04 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub97c \ucd94\ucc9c\ud558\uba70, \uc0ac\uc6a9\uc790\ub4e4\uc774 \ub2e4\uc591\ud55c \uac8c\uc784\uc744 \uacbd\ud5d8\ud560 \uc218 \uc788\ub3c4\ub85d \ud569\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ucd94\ucc9c \uc0ac\uc774\ud2b8\ub4e4\uc740 \uc2e0\ub8b0\uc131 \uc788\ub294 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub97c \uc120\ubcc4\ud558\uc5ec \uc0ac\uc6a9\uc790\ub4e4\uc5d0\uac8c \uc548\ub0b4\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>\uc628\ub77c\uc778 \uce74\uc9c0\ub178\ub294 \ud3b8\ub9ac\uc131\uacfc \ub2e4\uc591\uc131\uc744 \uc81c\uacf5\ud558\uba70, \uc0ac\uc6a9\uc790\ub4e4\uc740 \uc9d1\uc5d0\uc11c \ud3b8\uc548\ud558\uac8c \ub2e4\uc591\ud55c \uac8c\uc784\uc744 \uc990\uae38 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uadf8\ub7ec\ub098 \uc548\uc804\uc131\uacfc \ubcf4\uc99d\uc774 \uc911\uc694\ud558\uae30 \ub54c\ubb38\uc5d0, \uc0ac\uc6a9\uc790\ub4e4\uc740 \uc2e0\ub8b0\ud560 \uc218 \uc788\ub294 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub97c \uc120\ud0dd\ud558\ub294 \uac83\uc774 \uc911\uc694\ud569\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uc774\uc720\ub85c, \uce74\uc9c0\ub178 \ucee4\ubba4\ub2c8\ud2f0\uc640 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ucd94\ucc9c \uc0ac\uc774\ud2b8\ub4e4\uc740 \uc0ac\uc6a9\uc790\ub4e4\uc5d0\uac8c \uc548\uc804\ud558\uace0 \uc2e0\ub8b0\ud560 \uc218 \uc788\ub294 \ud50c\ub7ab\ud3fc\uc744 \uc81c\uacf5\ud558\uae30 \uc704\ud574 \ub178\ub825\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2 id=\"t2\">\uc628\ub77c\uc778 \uce74\uc9c0\ub178\uc758 \uc778\uae30\uc640 \uaddc\uc81c<\/h2>\n<p>\uc628\ub77c\uc778 \uce74\uc9c0\ub178\uc758 \uc778\uae30\ub294 \uc9c0\uc18d\uc801\uc73c\ub85c \uc99d\uac00\ud558\uace0 <a href=\"https:\/\/www.too-many.org\/\" target=\"_blank\" rel=\"noopener\">\uc2ac\ub86f\uc0ac\uc774\ud2b8<\/a> \uc788\uc73c\uba70, \ud2b9\ud788 \ud55c\uad6d\uc5d0\uc11c\ub294 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8, \ud0b9\ub364 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8, \uc2ac\ub86f \uc0ac\uc774\ud2b8 \ub4f1 \ub2e4\uc591\ud55c \ud615\ud0dc\uc758 \uc628\ub77c\uc778 \uce74\uc9c0\ub178\uac00 \uc774\uc6a9\ub418\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uc0ac\uc774\ud2b8\ub4e4\uc740 \uce74\uc9c0\ub178 \ubcf4\uc99d\uc744 \ud1b5\ud574 \uc548\uc804\uc131\uc744 \ubcf4\uc7a5\ud558\uba70, \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ucd94\ucc9c\uacfc \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ubaa8\uc74c \uc11c\ube44\uc2a4\ub97c \uc81c\uacf5\ud558\uc5ec \uc774\uc6a9\uc790\uc758 \uc120\ud0dd\uc744 \ub3d5\uace0 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>\ud55c\ud3b8, \uc628\ub77c\uc778 \uce74\uc9c0\ub178\uc758 \uaddc\uc81c\ub294 \uad6d\uac00\ubcc4\ub85c \ub2e4\ub974\uac8c \uc801\uc6a9\ub418\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ud55c\uad6d\uc5d0\uc11c\ub294 \uc628\ub77c\uc778 \uce74\uc9c0\ub178\uc758 \uc6b4\uc601\uc774 \uc5c4\uaca9\ud788 \uc81c\ud55c\ub418\uc5b4 \uc788\uc73c\uba70, \uc2e4\uc2dc\uac04 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\uc758 \uacbd\uc6b0\ub3c4 \uacf5\uc2dd\uc801\uc778 \ud5c8\uac00 \uc5c6\uc774\ub294 \uc6b4\uc601\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uaddc\uc81c\ub294 \uc774\uc6a9\uc790 \ubcf4\ud638\uc640 \uacf5\uc815\ud55c \uac8c\uc784 \ud658\uacbd\uc744 \uc720\uc9c0\ud558\uae30 \uc704\ud55c \uac83\uc785\ub2c8\ub2e4.<\/p>\n<p>\uce74\uc9c0\ub178 \ucee4\ubba4\ub2c8\ud2f0\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \uaddc\uc81c\uc640 \ud568\uaed8 \uc628\ub77c\uc778 \uce74\uc9c0\ub178\uc758 \ub2e4\uc591\ud55c \uc815\ubcf4\ub97c \uacf5\uc720\ud558\uba70, \uc774\uc6a9\uc790\ub4e4\uc774 \uc548\uc804\ud558\uace0 \uc990\uac70\uc6b4 \uac8c\uc784 \ud658\uacbd\uc744 \uc81c\uacf5\ud558\uae30 \uc704\ud574 \ub178\ub825\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2 id=\"t3\">\uc8fc\uc694 \uc628\ub77c\uc778 \uce74\uc9c0\ub178 \uc0ac\uc774\ud2b8\uc640 \uac8c\uc784 \uc885\ub958<\/h2>\n<p>\ud55c\uad6d\uc758 \uc628\ub77c\uc778 \uce74\uc9c0\ub178 \uc2dc\uc7a5\uc740 \ub2e4\uc591\ud55c \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub85c \ud65c\ubc1c\ud558\uac8c \uc6b4\uc601\ub418\uace0 \uc788\uc73c\uba70, \uac01 \uc0ac\uc774\ud2b8\ub294 \ub3c5\ud2b9\ud55c \ud2b9\uc9d5\uacfc \uac8c\uc784 \uc885\ub958\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc5ec\uae30\uc5d0\uc11c\ub294 \uc8fc\uc694 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\uc640 \uadf8\ub4e4\uc774 \uc81c\uacf5\ud558\ub294 \uac8c\uc784 \uc885\ub958\ub97c \uc18c\uac1c\ud569\ub2c8\ub2e4.<\/p>\n<ul>\n<li>\uc2ac\ub86f \uc0ac\uc774\ud2b8: \uc2ac\ub86f \uc0ac\uc774\ud2b8\ub294 \ub2e4\uc591\ud55c \uc2ac\ub86f \uac8c\uc784\uc744 \uc81c\uacf5\ud558\uba70, \uc774\ub294 \uac00\uc7a5 \uc778\uae30 \uc788\ub294 \uce74\uc9c0\ub178 \uac8c\uc784 \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. KIngdom \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub294 \ub2e4\uc591\ud55c \uc2ac\ub86f \uac8c\uc784\uc744 \uc81c\uacf5\ud558\uba70, \ud2b9\ud788 \ub192\uc740 \ud658\uc218\uc728\uacfc \ub2e4\uc591\ud55c \ubcf4\ub108\uc2a4 \ud504\ub85c\uadf8\ub7a8\uc73c\ub85c \uc720\uba85\ud569\ub2c8\ub2e4.<\/li>\n<li>\uc2e4\uc2dc\uac04 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8: \uc2e4\uc2dc\uac04 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub294 \ub77c\uc774\ube0c \ub51c\ub7ec\uc640 \ud568\uaed8\ud558\ub294 \uc2e4\uc2dc\uac04 \uac8c\uc784\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. KIngdom \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub294 \ub77c\uc774\ube0c \ube14\ub799\uc7ad, \ub77c\uc774\ube0c \ubc14\uce74\ub77c, \ub77c\uc774\ube0c \ub8f0\ub81b \ub4f1 \ub2e4\uc591\ud55c \uac8c\uc784\uc744 \uc81c\uacf5\ud558\uba70, \uc2e4\uc2dc\uac04 \ub51c\ub7ec\uc640\uc758 \uc0c1\ud638\uc791\uc6a9\uc744 \ud1b5\ud574 \ub354\uc6b1 \uc9c4\uc815\ud55c \uce74\uc9c0\ub178 \uacbd\ud5d8\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/li>\n<\/ul>\n<p>\uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ucd94\ucc9c\uc744 \uace0\ub824\ud560 \ub54c, KIngdom \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub294 \uc548\uc804\uc131\uacfc \uc2e0\ub8b0\uc131\uc744 \uac16\ucd98 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub85c \uc54c\ub824\uc838 \uc788\uc2b5\ub2c8\ub2e4. \uce74\uc9c0\ub178 \ubcf4\uc99d\uc744 \ud1b5\ud574 \uc548\uc804\ud55c \uac8c\uc784 \ud658\uacbd\uc744 \uc81c\uacf5\ud558\uba70, \uce74\uc9c0\ub178 \ucee4\ubba4\ub2c8\ud2f0\ub97c \ud1b5\ud574 \ud50c\ub808\uc774\uc5b4\ub4e4\uc740 \uc11c\ub85c \uc815\ubcf4\ub97c \uacf5\uc720\ud558\uace0 \uc0c1\ud638 \uc9c0\uc6d0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>\uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ubaa8\uc74c\uc5d0\uc11c\ub294 KIngdom \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub97c \ud3ec\ud568\ud558\uc5ec \ub2e4\uc591\ud55c \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub97c \ud55c\ub208\uc5d0 \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ubaa8\uc74c \uc0ac\uc774\ud2b8\ub294 \ub2e4\uc591\ud55c \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\uc758 \ud2b9\uc9d5\uacfc \uac8c\uc784 \uc885\ub958\ub97c \ube44\uad50\ud560 \uc218 \uc788\ub294 \uc815\ubcf4\ub97c \uc81c\uacf5\ud558\uba70, \ud50c\ub808\uc774\uc5b4\ub4e4\uc740 \uc790\uc2e0\uc758 \uc120\ud638\ub3c4\uc5d0 \ub9de\ub294 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub97c \uc27d\uac8c \ucc3e\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2 id=\"t4\">\uc628\ub77c\uc778 \uce74\uc9c0\ub178 \ud50c\ub808\uc774\uc5b4\uc758 \uc548\uc804\uacfc \ubcf4\uc548<\/h2>\n<p>\uc628\ub77c\uc778 \uce74\uc9c0\ub178 \ud50c\ub808\uc774\uc5b4\uc758 \uc548\uc804\uacfc \ubcf4\uc548\uc740 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \uce74\uc9c0\ub178 \ucee4\ubba4\ub2c8\ud2f0\uc5d0\uc11c\ub294 \uc548\uc804\ud55c \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ubaa8\uc74c\uacfc \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8 \ucd94\ucc9c\uc744 \uc81c\uacf5\ud558\uba70, \uc774\ub294 \ud50c\ub808\uc774\uc5b4\ub4e4\uc774 \uc548\uc804\ud55c \ud658\uacbd\uc5d0\uc11c \uac8c\uc784\uc744 \uc990\uae38 \uc218 \uc788\ub3c4\ub85d \ub3d5\uc2b5\ub2c8\ub2e4. \uc6b0\ub9ac \uce74\uc9c0\ub178\ub294 \ubcf4\uc99d\uc744 \uc81c\uacf5\ud558\uba70, \uc2e4\uc2dc\uac04 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub97c \ud1b5\ud574 \ud50c\ub808\uc774\uc5b4\ub4e4\uc774 \uc2e4\uc2dc\uac04\uc73c\ub85c \uac8c\uc784\uc744 \uc990\uae38 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub294 \ubcf4\uc548 \uae30\uc220\uc744 \ud1b5\ud574 \ud50c\ub808\uc774\uc5b4\uc758 \uac1c\uc778 \uc815\ubcf4\uc640 \uae08\uc735 \uc815\ubcf4\ub97c \ubcf4\ud638\ud569\ub2c8\ub2e4. \ub610\ud55c, \uc2ac\ub86f \uc0ac\uc774\ud2b8\uc5d0\uc11c\ub3c4 \ucd5c\uc2e0 \ubcf4\uc548 \uae30\uc220\uc744 \uc0ac\uc6a9\ud558\uc5ec \ud50c\ub808\uc774\uc5b4\uc758 \uc815\ubcf4\ub97c \uc548\uc804\ud558\uac8c \uc720\uc9c0\ud569\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ubcf4\uc548 \uc870\uce58\ub4e4\uc740 \ud50c\ub808\uc774\uc5b4\ub4e4\uc774 \uc548\uc2ec\ud558\uace0 \uac8c\uc784\uc744 \uc990\uae38 \uc218 \uc788\ub3c4\ub85d \ud569\ub2c8\ub2e4.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud55c\uad6d\uc758 \uc628\ub77c\uc778 \uce74\uc9c0\ub178 &#8211; \uac80\ud1a0 \u25b6\ufe0f \ub180\ub2e4 \u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \uc628\ub77c\uc778 \uce74\uc9c0\ub178: \uac80\ud1a0 \uc628\ub77c\uc778 \uce74\uc9c0\ub178\uc758 \uc778\uae30\uc640 \uaddc\uc81c \uc8fc\uc694 \uc628\ub77c\uc778 \uce74\uc9c0\ub178 \uc0ac\uc774\ud2b8\uc640 \uac8c\uc784 \uc885\ub958 \uc628\ub77c\uc778 \uce74\uc9c0\ub178 \ud50c\ub808\uc774\uc5b4\uc758 \uc548\uc804\uacfc \ubcf4\uc548 \uc2ac\ub86f \uc0ac\uc774\ud2b8\uc640 \uc628\ub77c\uc778 \uce74\uc9c0\ub178\uc758 \uc138\uacc4\ub294 \ud55c\uad6d\uc5d0\uc11c \uc810\uc810 \ub354 \uc778\uae30\ub97c \uc5bb\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\uc591\ud55c \uc628\ub77c\uc778 \uce74\uc9c0\ub178 \uc0ac\uc774\ud2b8\ub4e4\uc774 \uc2dc\uc7a5\uc5d0 \ub4f1\uc7a5\ud558\uba70, \uc774\ub4e4 \uc0ac\uc774\ud2b8\ub4e4\uc740 \uac01\uac01 \ub3c5\ud2b9\ud55c \ud2b9\uc9d5\uacfc \uc11c\ube44\uc2a4\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc6b0\ub9ac \uce74\uc9c0\ub178\uc640 \ud0b9\ub364 \uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\ub294 \uadf8 [&hellip;]<\/p>\n","protected":false},"author":36,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[35],"tags":[],"class_list":["post-17175","post","type-post","status-publish","format-standard","hentry","category-blog"],"_links":{"self":[{"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/posts\/17175","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/users\/36"}],"replies":[{"embeddable":true,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=17175"}],"version-history":[{"count":1,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/posts\/17175\/revisions"}],"predecessor-version":[{"id":17176,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=\/wp\/v2\/posts\/17175\/revisions\/17176"}],"wp:attachment":[{"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=17175"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=17175"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kolbepezeshk.ir\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=17175"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}